This website requires JavaScript.
Explore
Help
Sign In
kevin
/
ohmyzsh
Watch
1
Fork
0
You've already forked ohmyzsh
mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced
2024-11-15 09:58:47 -07:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
10ab2911d3
ohmyzsh
/
plugins
/
cp
/
cp.plugin.zsh
5 lines
104 B
Bash
Raw
Normal View
History
Unescape
Escape
Fix cp plugin completion and refactor (#5427) * cp plugin: change cpv to function so that completion works * cp plugin: show numbers in units of 1024 (K,M,G,T) Use `-h` level (3): output numbers in units of 1024. See the manpage of rsync for more information. * cp plugin: add a README file * cp plugin: recurse directories * cp plugin: remove `--` to separate files from options This has some undesired effects, like having `cpv --help` be a file not found error. Use `--` yourself if you need it (which you generally don't): ```zsh cpv -- -some-file-with-hyphens.txt /tmp ``` Added this same info to the README.
2016-10-03 16:03:16 -07:00
cpv
(
)
{
rsync -pogbr -hhh --backup-dir
=
/tmp/rsync -e /dev/null --progress
"
$@
"
}
compdef _files cpv
Reference in New Issue
Copy Permalink