diff options
Diffstat (limited to 'Biz/Ide/ns')
-rwxr-xr-x | Biz/Ide/ns | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -12,7 +12,7 @@ fi $VERB $NS -read -p "n to change ns, v to change verb, enter to continue, or ^C to exit" -n 1 input +read -p "n: change ns, v: change verb, b: change both, ^C: exit, else: continue" -n 1 input if [[ $input == "v" ]] then @@ -22,6 +22,11 @@ elif [[ $input == "n" ]] then unset NS $0 +elif [[ $input == "b" ]] +then + unset NS + unset VERB + $0 else $0 fi |