diff options
Diffstat (limited to '.run/src/bin/shell-script.sh')
| -rw-r--r-- | .run/src/bin/shell-script.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.run/src/bin/shell-script.sh b/.run/src/bin/shell-script.sh new file mode 100644 index 0000000..306afb5 --- /dev/null +++ b/.run/src/bin/shell-script.sh @@ -0,0 +1,14 @@ +#!/bin/sh +echo "" +echo ' Welcome to use `run.sh` / `run.ps1`' +echo "" +echo ' > "Hello World"' +echo " > cwd : \"$(pwd)\"" +items="" +sep="" +for arg in "$@"; do + items="${items}${sep}\"${arg}\"" + sep=", " +done +echo " > args : ${items}" +echo "" |
