Question 71
What output does the command seq 1 5 20produce?
1
1
Question 72
Which of the following commands can be used to display the local routing table? (Choose TWO correct answers.)
Question 73
What output is produced by the following command sequence?
echo '1 2 3 4 5 6' | while read a b c; do
echo result $c $b $a;
done
echo '1 2 3 4 5 6' | while read a b c; do
echo result $c $b $a;
done
Question 74
What command can be used to generate syslog entries of any facility and priority? (supply just the command name without a path)
Question 75
What keyword is missing from this code sample of a shell script?
____ i in *.txt; do
echo $i
done
____ i in *.txt; do
echo $i
done
