4 lines
199 B
Bash
Executable file
4 lines
199 B
Bash
Executable file
#!/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 "$@"
|