summaryrefslogtreecommitdiffstats
path: root/languages/bash/app_templates/bashhello/app.sh
blob: 9e70bd5f23e85e7e04aef74857932e3f5238dace (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash
# $Id$
# %{APPNAME} - Copyright (C) %{YEAR} %{AUTHOR} <%{EMAIL}>


hello()
{
	echo "Hello $NAME"
}

echo "This is a test"

LST="Ian Ben Rook Kaz"
for NAME in $LST
do
	hello
done