summaryrefslogtreecommitdiffstats
path: root/hello-alinne.sh
blob: e37de581e30447d59fa31a167702da32372fcb8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh


echo "hello what is your name?"

read name

if [ "$name" = "alinne" ]; then
	echo "$name is a beautiful name!"
	echo "nice to meet you"
else
	echo "hello $name"
fi