shell to call other shell

This commit is contained in:
2015-11-15 21:52:12 +01:00
parent ec76343af6
commit 123175287a
2 changed files with 20 additions and 2 deletions
+18
View File
@@ -0,0 +1,18 @@
#!/bin/sh
# V0.1
### DEFINITIONS
MY_PATH="$(pwd)"
#. $MY_PATH/bin/_inc/def_text_coloring.sh
### PRORGAM
echo "Action: $1"
case $1 in
1) echo "play" ;;
*) echo "INVALID ACTION!" ;;
esac