My current script does the following;
It takes integer as a command line argument and starts from 1 to N , it checks whether the numbers are divisible by three,five or both of them. It simply prints out X for three, Y for five and XY for three,five. If the command line argument is empty.
I am having this error "Too many arguments at line 11,15 and 19".
Here is the code:
#!/bin/bash
if [ (statement) ]; then
for ...
do
if [ statement ]; then
echo "s1"
elif [ statement2 ]; then
echo "s2"
elif [ statement3 ]
then
echo "s3"
else
echo "$i"
fi
done
elif [ statement ]
then
for ...
do
if [ statement ]
then
echo ""
elif [ statement2 ]
then
echo ""
elif [ statement3 ]
then
echo ""
else
echo "$i"
fi
done
else
echo ""
fi