cp 🏭

Creates copies of files and directories.

⚠️ Default behavior is to overwrite destination files.

Copy single file

cp ~/.bashrc ~/.bashrc-copy

Copy multiple files into a new directory -t

cd ~ && cp .bashrc .zshrc target-dir
cd ~ && cp -t target-dir .bashrc .zshrc

Both create target-dir directory and copy .bashrc and .zshrc into it.

Copy by wildcard selection -t

cd ~ && cp -t target-dir *.zip *.txt

Copies all .zip and .txt files to target-dir directory.

Copy a directory -r

cp -r ~/.config ~/.config-copy

Update only newer files -u

cp -ru ~/.config ~/.config-last-backup

This just copies files that modified after the last copy.

Create backup for existing destination files -b

cp -rb ~/.config ~/.config-last-backup

Set to ask for overwriting -i

cp -ri ~/.config ~/.config-last-backup

Set to keep existing files (no overwrite) -n

cp -rn ~/.config ~/.config-last-backup

About Living in the Shell
Obsessed with doing things in the shell, I’ve decided to share my daily struggles on living in the shell as terse but informative posts.