X-Git-Url: http://dolda2000.com/gitweb/?p=utils.git;a=blobdiff_plain;f=planime;h=27b3eac4a5e880a323be9aa7a50889b9c60c0797;hp=a25761e57085257e90b260056d16488adeb7cd79;hb=f03b6a08d04673082a4163f6360fd94c494e3244;hpb=061f96f39161db753b603e9f057b1e3afb1b6e83 diff --git a/planime b/planime index a25761e..27b3eac 100755 --- a/planime +++ b/planime @@ -14,12 +14,25 @@ scorefile() { fi } +findbase() { + if [ -r aliases ]; then + while read alias rest; do + if [ "$alias" = "$1" ]; then + echo "$rest" + return + fi + done &2; fi - local file tail eq eqt m matches max score + local base file tail eq eqt m matches max score matches=() - for file in "$1"*; do - tail="${file#"$1"}" + base="$(findbase "$1")" + for file in "$base"*; do + tail="${file#"$base"}" eq="${tail%.*}" m=n if [ "${eq%% *}" -eq "$2" ] 2>/dev/null; then @@ -81,6 +94,10 @@ while [ "${1:0:1}" = - ]; do ;; -A) while :; do + if [ $# -lt 1 ]; then + echo "planime: unterminated argument list" >&2 + exit 1 + fi a="$1" shift if [ "$a" = \; ]; then @@ -152,7 +169,7 @@ if [ -z "$file" ]; then curser= fi else - curser="$base" + curser="$(findbase "$base")" fi if [ -n "$curser" ]; then file="$(findfile "$dirbase $curser - " "$ep" "$tqual")" || \