Use the following command to copy all files with extension .c to the sub-directory apps of the object root on the server aspen, display names of files as they copy, and prompt for a password, as user Andrew:
rucopy -u Andrew -P -v *.c //aspen/root/apps |
Use the following command to copy files whose names end in .txt in the top directory of the object word on the server demopc to the local directory /tmp, convert the files from DOS to UNIX text format, and supply the password mypass, as user Andrew:
rucopy -u Andrew -p mypass -c //demopc/word/*.txt /tmp |
Use the command below to copy the file autoexec.bat in the top directory of the shared object root on the server vampire to the local file autoexec.dos in the current directory. The object root has share-mode access and no password.
rucopy //vampire/root/autoexec.bat autoexec.dos |
Use the following command to display the contents of the file notes.txt in the top directory of the shared object root on the server demopc, pipe the output to the program more, and prompt for a password, as user Templeton:
rucopy -u Templeton -P -s //demopc/root/notes.txt | more |
Use the command below to copy all files with extension .h in the current local directory to the subdirectory headers of the shared object apps on the server demopc, convert the files from UNIX to DOS text format, and display names of files as they copy. The object apps has share-mode access and no password.
rucopy -c -v *.h //demopc/apps/headers |
Use the command below to copy all files from the directory /tmp to the shared object paint on the server demopc, which expects the character set "shift-jis", as user joe, with password joepass2:
rucopy -u joe -p joepass2 -C shift-jis /tmp/*.* //demopc/paint |