diff options
Diffstat (limited to '')
-rwxr-xr-x | linux/bin/num | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/linux/bin/num b/linux/bin/num index ac1728a..5fe4188 100755 --- a/linux/bin/num +++ b/linux/bin/num @@ -1,13 +1,14 @@ #!/bin/sh +# Verzeichnis muss eventuell an den Ort der neo20.txt angepasst werden: NEO_TXT=$HOME/neo/A-REFERENZ-A/neo20.txt -if [ 0 = $# ];then +if [ 0 = $# ]; then grep -m 1 -B 15 "┴─────┘" $NEO_TXT else for NUM in $@; do if [ $(($NUM)) -ge 1 -a $(($NUM)) -le 6 ]; then - grep -B 11 -m "$NUM" "└───────┴───┴───┘" $NEO_TXT | tail -n 12 + grep -B 11 -m "$NUM" "└───────┴───┴───┘" $NEO_TXT | tail -n 12 else echo "Benutzung: `basename $0` [1-6]" echo " Wenn der Aufruf ohne Zahl erfolgt, werden alle Ebenen ausgegeben." |