tel me the answer the above question
A:
Why do you need to display your name 10 times ? This question seems incomplete. The command in Unix to display your user name is "whoami"
spyder
2010-07-08 17:56:27
A:
COUNT=0
I=10 # How many times display the $NAME
NAME=$USER # Your name
while [ $COUNT -lt $I ]; do
echo $NAME;
COUNT="`expr $COUNT + 1`";
done
Artur Gaspar
2010-07-08 18:33:59