Quote:
Originally posted by Liveplaygirls
Hello,
Can someone tell me how i can copy in telnet on a linux server a directory to another directory
i cant find out why 
Thanks
Martien
|
Regardless if it's telnet, any type of shell.
cp -R /dir1 /dir2
-R = recurse the directory
A simple cp /dir1 to /dir2 will complain about it being a directory.