mirror of
https://github.com/yavook/kiwi-scp.git
synced 2024-11-22 12:53:00 +00:00
13 lines
No EOL
167 B
Bash
Executable file
13 lines
No EOL
167 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "Hello World!"
|
|
|
|
echo "This is ${0}."
|
|
|
|
echo "A.K.A. $(readlink -f ${0})."
|
|
|
|
echo "Arguments are:"
|
|
|
|
for an_arg in "${@}" ; do
|
|
echo "- ${an_arg}"
|
|
done |