copy in linux terminal code example
Example 1: copy folder linux
cp -R dir1 dir2
Example 2: linux copy
# Linux - Bash
# syntax:
# cp [option(s)]
# example-1 (fundamental - no options):
cp "C:\Windows\System32\drivers\etc\hosts.txt" "C:\Users\hosts.txt"
# example-2 (fundamental - with options):
cp -nR "C:\Windows\System32\drivers\etc" "C:\Users"
# + ------ + ------------------------------------------------------- +
# | OPTION | DESCRIPTION |
# + ------ + ------------------------------------------------------- +
# | -a | archive files |
# | -f | force copy by removing the destination file if needed |
# | -i | interactive - ask before overwrite |
# | -l | link files instead of copy |
# | -L | follow symbolic links |
# | -n | no file overwrite |
# | -R | recursive copy (including hidden files) |
# + ------ + ------------------------------------------------------- +
Example 3: ubuntu copy
cp origin destin
#example
cp /home/me/test.zip /home/me/destin/
Example 4: how to copy file in ubuntu terminal
cp ~/Downloads/your-file.txt ~/Documents/
Example 5: copy command in linux
move command : mv filename dirname
remove command : rm -r filename
copy command : cp filename dirname
zip command : zip -r filename.zip foldername
unzip command : unzip filename.zip -d dirname