Lpi 102-350 - Questions & Answers
Free preview · every answer includes a full explanation
Product page: https://prepkeys.com/102-350.html
Which bash option will prevent you from overwriting a file with a ">"?
To test a shell script called myscript, the environment variable FOOBAR must be removed temporarily.
How can this be done?
In the following command and its output, echo $$
12942
What is 12942?
Which command will print the exit value of the previous command to the screen in bash?
Which of the following SQL statements will select the fields name and address from the contacts table?
Which of the following configuration files should be modified to set default shell variables for all users?
Which of the following is the best way to list all defined shell variables?
Which command allows you to make a shell variable visible to subshells?
What output will the following command sequence produce?
echo '1 2 3 4 5 6' | while read a b c; do
echo result: $c $b $a;
done
What output will the command seq 10 produce?