We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92aec22 commit 2cc413eCopy full SHA for 2cc413e
521a.sh
@@ -21,16 +21,16 @@ EOF
21
22
if [ $# -gt 0 ]; then
23
24
- exec scriptbc "$@" #(b)
+ exec scriptbc "$@"
25
26
fi
27
28
echo "calculate-- help or quit?"
29
30
-/bin/echo -n "calculate> " #(c) /bin/echo -n ""
+/bin/echo -n "calculate> " #(b)
31
32
33
-while read cmd args # param is called cmd and args # (d) while read loop
+while read cmd args # param is called cmd and args # (c)
34
do
35
36
case $cmd
@@ -39,7 +39,7 @@ do
39
quit | exit ) exit ;;
40
help | ? ) show_help ;;
41
scale ) scale=$args ;;
42
- * ) scriptbc -p $scale "$cmd" "$args" ;; (c)
+ * ) scriptbc -p $scale "$cmd" "$args" ;;
43
44
esac
45
0 commit comments