mirror of
https://github.com/yavook/kiwi-scp.git
synced 2024-11-22 12:53:00 +00:00
13 lines
167 B
Bash
13 lines
167 B
Bash
|
#!/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
|