| 11 | |
| 12 | Some 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. |