view indenters/example.sh @ 795:aac7cdbece6d

Fixed faulty sentence in changelog. git-svn-id: svn://svn.code.sf.net/p/universalindent/code/trunk@1073 59b1889a-e5ac-428c-b0c7-476e01d41282
author thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
date Sun, 01 Jan 2012 16:13:16 +0000
parents 39d66174b927
children
line wrap: on
line source

#!/bin/sh

string="Hallo Welt"
# if else test
if [ -n "$string" ]; then
echo "The string is \"$string\"!"
else
echo "The string is empty!"
fi

# for test
array="Text1 Text2 Text3 Text4"
for i in $array
do
echo "The string \"$i\" is in the array!"
done

count=0
while [ $count -le 10 ]
do
echo "We've counted up to $count."
count=$[$count+1]  #increment counter by one.
done

echo "Passed everything!"
#read -p "press any key to continue"