X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=etc%2Fzsh%2Fzshrc;h=f66bebc6db20ccb39bbc42f28ffafd8944c911b6;hb=bd49c00f9a18f413cd33767f5dfa793e9803c112;hp=d088f118df5c9b8e229702fdb5cefea9397f48c4;hpb=77ce18f07c88f3d2f54a10f2738e1f8fa185c779;p=grml-etc-core.git diff --git a/etc/zsh/zshrc b/etc/zsh/zshrc index d088f11..f66bebc 100644 --- a/etc/zsh/zshrc +++ b/etc/zsh/zshrc @@ -198,6 +198,10 @@ isopenbsd(){ [[ $GRML_OSTYPE == "OpenBSD" ]] } +issolaris(){ + [[ $GRML_OSTYPE == "SunOS" ]] +} + #f1# are we running within an utf environment? isutfenv() { case "$LANG $CHARSET $LANGUAGE" in @@ -354,12 +358,12 @@ ZSH_NO_DEFAULT_LOCALE=${ZSH_NO_DEFAULT_LOCALE:-0} typeset -ga ls_options typeset -ga grep_options if ls --color=auto / >/dev/null 2>&1; then - ls_options=( --color=auto ) + ls_options+=( --color=auto ) elif ls -G / >/dev/null 2>&1; then - ls_options=( -G ) + ls_options+=( -G ) fi if grep --color=auto -q "a" <<< "a" >/dev/null 2>&1; then - grep_options=( --color=auto ) + grep_options+=( --color=auto ) fi # utility functions @@ -3023,12 +3027,12 @@ fi bk() { emulate -L zsh local current_date=$(date -u "+%Y-%m-%dT%H:%M:%SZ") - local clean keep move verbose result + local clean keep move verbose result all setopt extended_glob usage() { cat << EOT bk [-hcmv] FILE [FILE ...] -bk -r [-v] [FILE [FILE ...]] +bk -r [-av] [FILE [FILE ...]] Backup a file or folder in place and append the timestamp Remove backups of a file or folder, or all backups in the current directory @@ -3038,6 +3042,7 @@ Usage: -m Move the file/folder, using mv(1) -r Remove backups of the specified file or directory, using rm(1). If none is provided, remove all backups in the current directory. +-a Remove all (even hidden) backups. -v Verbose The -c, -r and -m options are mutually exclusive. If specified at the same time, @@ -3047,8 +3052,9 @@ The return code is the sum of all cp/mv/rm return codes. EOT } keep=1 - while getopts ":hcmrv" opt; do + while getopts ":hacmrv" opt; do case $opt in + a) (( all++ ));; c) unset move clean && (( ++keep ));; m) unset keep clean && (( ++move ));; r) unset move keep && (( ++clean ));; @@ -3082,7 +3088,11 @@ EOT 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 + if (( all > 0 )); then + 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(D) + 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 + fi (( result += $? )) fi fi