1megatools-put(1) megatools-put(1)
2
3
4
6 megatools put - upload files to your Mega.nz account
7
9 megatools put [--no-progress] [--path <remotepath>] <paths>...
10
12 Uploads files to your Mega.nz account.
13
14 NOTE: If you want to upload entire directories, use megatools-copy(1).
15
17 --path <remotepath>
18 Remote path to upload to. If this path is a directory, files are
19 placed into the directory. If this path doesn’t exist, and it’s
20 parent directory does, the file will be uploaded to a specified
21 path (this only works if you specify exactly one file).
22
23 --no-progress
24 Disable upload progress reporting.
25
26 --enable-previews
27 Generate and upload file previews, when uploading new files.
28 This is the default, unless you changed it in the configuration
29 file. Use this to override the option from the configuration
30 file.
31
32 --disable-previews
33 Don’t generate and upload file previews. Default is to generate
34 previews.
35
36 -u <email> , --username <email>
37 Account username (email)
38
39 -p <password> , --password <password>
40 Account password
41
42 --no-ask-password
43 Never ask interactively for a password
44
45 --reload
46 Reload filesystem cache
47
48 --limit-speed <speed>
49 Set maximum allowed upload and download speed in KiB/s. This
50 option overrides config file settings. 0 means no limit. When
51 using ParallelTransfers > 1, upload speed limit is applied to
52 each transfer individually.
53
54 --proxy <proxy>
55 Use proxy server to connect to mega.nz. This option overrides
56 config file settings. More information can be found in libcurl
57 documentation at ⟨https://curl.haxx.se/libcurl/c/CUR‐
58 LOPT_PROXY.html⟩. Some acceptable values are:
59
60 • none : Disable proxy if it was enabled in the config file.
61
62 • socks5://localhost:9050 : Local SOCKSv5 proxy server
63
64 • socks5h://localhost:9050 : Local SOCKSv5 proxy server with DNS
65 handled by the proxy
66
67 --netif <ifname|ip>
68 Network interface or local IP address used for outgoing connec‐
69 tions. You have to specify IP address bound to some of your lo‐
70 cal network interfaces, when specifying an IP address.
71
72 --ip-proto <proto>
73 Which IP protocol to prefer when connecting to mega.nz (v4, v6,
74 or any). This is just an advisory option. Megatools will re‐
75 solve mega.nz domain, and then use an A or AAAA record based on
76 the stated preference.
77
78 --config <path>
79 Load configuration from a file
80
81 --ignore-config-file
82 Disable loading .megarc
83
84 --debug [<options>]
85 Enable debugging of various aspects of the megatools operation.
86 You may enable multiple debugging options separated by commas.
87 (eg. --debug api,fs)
88
89 Available options are:
90
91 • http: Dump HTTP request/response details (can be used to debug
92 connection/proxy issues)
93
94 • api: Dump Mega.nz API calls
95
96 • fs: Dump Mega.nz filesystem (may require --reload to actually
97 print something)
98
99 • cache: Dump cache contents
100
101 • tman: Dump transfer manager events
102
103 --version
104 Show version information
105
106 <paths>
107 One or more local files to upload.
108
110 • Upload file to the /Root:
111
112 $ megatools put README
113 $ megatools ls /Root
114
115 /Root
116 /Root/README
117
118 • Upload file, while naming it differently:
119
120 $ megatools put --path /Root/README.TXT README
121 $ megatools ls /Root
122
123 /Root
124 /Root/README.TXT
125
127 Mega.nz filesystem is represented as a tree of nodes of various types.
128 Nodes are identified by a 8 character node handles (eg. 7Fdi3ZjC).
129 Structure of the filesystem is not encrypted.
130
131 Megatools maps node tree structure to a traditional filesystem paths
132 (eg. /Root/SomeFile.DAT).
133
134 NOTE: By the nature of Mega.nz storage, several files in the directory
135 can have the same name. To allow access to such files, the names of
136 conflicting files are extended by appending dot and their node handle
137 like this:
138
139 /Root/conflictingfile
140 /Root/conflictingfile.7Fdi3ZjC
141 /Root/conflictingfile.mEU23aSD
142
143 You need to be aware of several special folders:
144
145 /Root Writable directory representing the root of the filesystem.
146
147 /Trash Trash directory where Mega.nz web client moves deleted files.
148 This directory is not used by megatools when removing files.
149
150 /Inbox Not sure.
151
152 /Contacts
153 Directory containing subdirectories representing your contacts
154 list. If you want to add contacts to the list, simply create
155 subdirectory named after the contact you want to add.
156
157 /Contacts/<email>
158 Directories representing individual contacts in your contacts
159 list. These directories contain folders that others shared with
160 you. All shared files are read-only, at the moment.
161
163 megatools(1), megarc(5), megatools-df(1), megatools-dl(1), megatools-
164 get(1), megatools-ls(1), megatools-mkdir(1), megatools-put(1), mega‐
165 tools-reg(1), megatools-rm(1), megatools-copy(1).
166
168 Part of the megatools(1) suite of commands.
169
171 Report bugs to megatools@megous.com ⟨mailto:megatools@megous.com⟩ .
172 Your message will end up in a public archive, so be careful what you
173 say or send.
174
176 Megatools was written by Ondrej Jirman < megatools@megous.com
177 ⟨mailto:megatools@megous.com⟩ >, 2013-2019.
178
179 Official website is ⟨http://megatools.megous.com⟩.
180
181
182
183 26 January 2021 megatools-put(1)