X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=etc%2Fzsh%2Fzshrc;h=631118c245f4563019305ac78aa81d4b132a5664;hb=631310318ec9d5b7ec3c6ba91827f1d9a35c8adf;hp=14923e72b36539bbb26ed55cfe3dac5bf757ffac;hpb=cd79c201bb20c367fa87563d6cf0ff36a9fee1d7;p=grml-etc-core.git diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index 14923e7..631118c 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -764,14 +764,17 @@ grmlcomp() { # host completion if is42 ; then + [[ -r ~/.ssh/config ]] && _ssh_config_hosts=(${${${(@M)${(f)"$(<$HOME/.ssh/config)"}:#Host *}#Host }:#*[*?]*}) || _ssh_config_hosts=() [[ -r ~/.ssh/known_hosts ]] && _ssh_hosts=(${${${${(f)"$(<$HOME/.ssh/known_hosts)"}:#[\|]*}%%\ *}%%,*}) || _ssh_hosts=() [[ -r /etc/hosts ]] && : ${(A)_etc_hosts:=${(s: :)${(ps:\t:)${${(f)~~"$(&2; return 1;; @@ -3051,26 +3060,31 @@ EOT shift "$((OPTIND-1))" if (( keep > 0 )); then while (( $# > 0 )); do - if islinux; then - cp $verbose -a "$1" "$1_$current_date" - elif isfreebsd; then - if [[ -d "$1" ]] && [[ "$1" == */ ]]; then - echo "cowardly refusing to copy $1 's content; see cp(1)" >&2; return 1 - else - cp $verbose -a "$1" "$1_$current_date" - fi - else; - cp $verbose -pR "$1" "$1_$current_date" + if islinux || isfreebsd; then + cp $verbose -a "${1%/}" "${1%/}_$current_date" + else + cp $verbose -pR "${1%/}" "${1%/}_$current_date" fi (( result += $? )) shift done elif (( move > 0 )); then while (( $# > 0 )); do - mv $verbose "$1" "$1_$current_date" + mv $verbose "${1%/}" "${1%/}_$current_date" (( result += $? )) shift done + elif (( clean > 0 )); then + if (( $# > 0 )); then + while (( $# > 0 )); do + rm $verbose -rf "${1%/}"_[0-9](#c4,)-(0[0-9]|1[0-2])-([0-2][0-9]|3[0-1])T([0-1][0-9]|2[0-3])(:[0-5][0-9])(#c2)Z + (( result += $? )) + shift + done + else + rm $verbose -rf *_[0-9](#c4,)-(0[0-9]|1[0-2])-([0-2][0-9]|3[0-1])T([0-1][0-9]|2[0-3])(:[0-5][0-9])(#c2)Z + (( result += $? )) + fi fi return $result }