What is the output of the following command?
for token in a b c; do
echo -n ${token};
done
What is the output of the following command sequence?
for token in a b c; do
echo -n "$token ";
done
Which character starts a comment line in a shell script file?
Which approach will provide a listing of the contents in a tar archive?
The script, script.sh, consists of the following lines:
#!/bin/bash
echo $2 $1
Which output will appear if the command, ./script.sh test1 test2, is entered?