]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blobdiff - docs/frontends/CLI.rst
add --format= to 'tahoe put'/'mkdir', remove --mutable-type. Closes #1561
[tahoe-lafs/tahoe-lafs.git] / docs / frontends / CLI.rst
index 7aa2797966318a4ba2b3df768b158ca58898c1be..ed8ddf65debcf31d7c06c31aeb1d205b9e30b773 100644 (file)
@@ -261,9 +261,9 @@ Command Syntax Summary
 
 ``tahoe webopen [PATH]``
 
-``tahoe put [--mutable] [FROMLOCAL|-]``
+``tahoe put [--format=FORMAT] [FROMLOCAL|-]``
 
-``tahoe put [--mutable] FROMLOCAL|- TOPATH``
+``tahoe put [--format=FORMAT] FROMLOCAL|- TOPATH``
 
 ``tahoe put [FROMLOCAL|-] mutable-file-writecap``
 
@@ -394,15 +394,15 @@ Command Examples
  from the following path. When the source file is named "``-``", the contents
  are taken from stdin.
 
-``tahoe put file.txt --mutable``
+``tahoe put file.txt --format=SDMF``
 
- Create a new mutable file, fill it with the contents of ``file.txt``, and
- print the new write-cap to stdout.
+ Create a new (SDMF) mutable file, fill it with the contents of ``file.txt``,
and print the new write-cap to stdout.
 
 ``tahoe put file.txt MUTABLE-FILE-WRITECAP``
 
- Replace the contents of the given mutable file with the contents of ``file.txt``
- and prints the same write-cap to stdout.
+ Replace the contents of the given mutable file with the contents of
``file.txt`` and prints the same write-cap to stdout.
 
 ``tahoe cp file.txt tahoe:uploaded.txt``