OSY shell script programs
OSY shell script programs
--Percentage
#!bin/bash
for (( c=1 ; c<=5 ; c++ ))
do
echo "Welcome $c times"
done
--table
--inverted pyramid
---fibonacci
---Days of week
for i in sun mon tue wed thur fri sat
do
echo $i
done
pwd
ls > f
exec < f
while read line
do
if [ -f $line ]
then
if [ -x $line ]
then
echo "$line"
fi
fi
done
pwd
ls > f
exec < f
while read line
do
if [ -f $line ]
then
if [ -x $line ] && [ -r $line ] && [ -w $line ]
then
echo "$line"
fi
fi
done