
Originally Posted by
cool999
and please tell me the ssh command to copy files from one directory to other..
Note: In the following commands replace the example paths with the actual source and destination paths of the desired directory or file involved.
A directory or file may be copied using the following command via SSH access:
Code:
# cp -pv /full/source/path /full/destination/path
A directory or file may be moved using the following command via SSH access:
Code:
# mv -v /full/source/path /full/destination/path