We can copy directories with the Linux cp command, we need to use -r option. For example, this command copies the directory named xxdir to the /home/xxuser directory:
cp -r xxdir /tmp/xxuser
If you try to copy a directory without using the -r argument we will get xxdir is a directory(not copied) error message as shown in below screenshot.
cp -r xxdir /tmp/xxuser
If you try to copy a directory without using the -r argument we will get xxdir is a directory(not copied) error message as shown in below screenshot.
No comments:
Post a Comment