5 lines
199 B
Plaintext
5 lines
199 B
Plaintext
|
#!/bin/sh
|
||
|
# rsync directory properly
|
||
|
# suffix both dirs with / to act on contents
|
||
|
rsync -recursive --specials --times --links --delete --info=progress2,remove,symsafe,flist,del --human-readable "$@"
|