X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=etc%2Fzsh%2Fzshrc;h=94561d3eb99a69084e380625eb6e8ed67d849656;hb=0ac05d2ad00e9d643804533f53de8ed9028271a3;hp=835768387ddbf4ed82aa324c5b7e9bc270f0c6e5;hpb=d53b0881571848e2755e2aedcd2d00a3d9e0653a;p=grml-etc-core.git diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index 8357683..94561d3 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -3022,13 +3022,22 @@ fi #f5# Backup \kbd{file_or_folder {\rm to} file_or_folder\_timestamp} bk() { emulate -L zsh - if islinux; then - cp -a "$1" "$1_$(date --iso-8601=m)" - elif isopenbsd; then - cp -R "$1" "$1_$(date "+%FT%H:%M")" - else; - echo 'sorry, not yet implemented, send a patch!' >&2 - fi + while (( $# > 0 )); do + if islinux; then + cp -a "$1" "$1_$(date --iso-8601=m)" + elif isopenbsd; then + cp -R "$1" "$1_$(date "+%FT%H:%M")" + elif isfreebsd; then + if [[ -d "$1" ]] && [[ "$1" == */ ]]; then + echo "cowardly refusing to copy $1 's content; see cp(1)" >&2; return 1 + else + cp -a "$1" "$1_$(date "+%FT%H:%M")" + fi + else; + echo 'sorry, not yet implemented, send a patch!' >&2 + fi + shift + done } #f5# cd to directoy and list files