Hacker News new | ask | show | jobs
by eriner_ 1455 days ago
I use zsh and have the following alias (rather, function):

``` cp () { rsync -avhW --progress --inplace ${@} } ```

If I ever need to use the `cp` binary, I execute `=cp`, which evaluates to `/bin/cp`.

1 comments

Why use rsync? Only for the progress bar?