summaryrefslogtreecommitdiff
path: root/Biz/Ide/ns
diff options
context:
space:
mode:
Diffstat (limited to 'Biz/Ide/ns')
-rwxr-xr-xBiz/Ide/ns7
1 files changed, 6 insertions, 1 deletions
diff --git a/Biz/Ide/ns b/Biz/Ide/ns
index 2791903..54d11d4 100755
--- a/Biz/Ide/ns
+++ b/Biz/Ide/ns
@@ -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