Changes between Initial Version and Version 1 of Ticket #2329, comment 19


Ignore:
Timestamp:
2015-01-22T18:38:30Z (10 years ago)
Author:
nejucomo
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2329, comment 19

    initial v1  
    99
    1010Note that this can be orthogonal to whether or not dest/ exists.
     11
     12Some semiconcrete examples:
     13
     14* tahoe cp -r myalias: foo/ # Error: "myalias:" has no name. To copy the contents into foo/ append a /
     15* tahoe cp -r myalias:/ foo/ # foo will contain the contents of myalias after this.
     16
     17* tahoe cp -r URI:DIR2... foo/ # Error: a dircap has no name, to copy the contents, append a /
     18* tahoe cp -r URI:DIR2.../ foo # Copy the contents of the cap into foo.
     19
     20* tahoe cp -r URI:DIR2.../blah foo # ./foo/blah/ will contain the contents.
     21* tahoe cp -r URI:DIR2.../blah/ foo # ./foo will contain the contents.