mirror of
https://github.com/yavook/kiwi-scp.git
synced 2025-12-07 00:53:10 +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
|