mirror of
https://github.com/oh-my-fish/oh-my-fish
synced 2024-11-03 15:40:32 +00:00
7 lines
241 B
Fish
7 lines
241 B
Fish
# Function to copy files and directories (a.txt copy to a.txt.20140608_195859.bak)
|
|
# (c) Roman Inflianskas (rominf) <infroma@gmail.com>, 2014
|
|
|
|
function cpbak --description 'Copy files to make a backup copies'
|
|
__bak cpbak 'cp -a' $argv
|
|
end
|