summaryrefslogtreecommitdiff
path: root/linux/bin/num
diff options
context:
space:
mode:
Diffstat (limited to 'linux/bin/num')
-rwxr-xr-xlinux/bin/num18
1 files changed, 18 insertions, 0 deletions
diff --git a/linux/bin/num b/linux/bin/num
new file mode 100755
index 0000000..ac1728a
--- /dev/null
+++ b/linux/bin/num
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+NEO_TXT=$HOME/neo/A-REFERENZ-A/neo20.txt
+
+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
+ else
+ echo "Benutzung: `basename $0` [1-6]"
+ echo " Wenn der Aufruf ohne Zahl erfolgt, werden alle Ebenen ausgegeben."
+ echo " Ansonsten werden nur die Ebenen ausgegeben, die angegeben sind."
+ exit 1
+ fi
+ done
+fi