LFCS Dumps LFCS Braindumps
LFCS Real Questions LFCS Practice Test LFCS Actual Questions
Linux Foundation Certified System Administrator
https://killexams.com/pass4sure/exam-detail/LFCS
Question #241
Given a file called birthdays containing lines like: YYYY-MM-DD Name -
1983-06-02 Tim
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?
test1 test2 Which approach will provide a listing of the contents in a tar archive? Use the tar command with -t. Which character starts a comment line in a shell script file? ; What is the output of the following command sequence? for token in a b c; do echo -n "$token "; done anbncn What is the correct command to extract the contents of the archive file download.bz2? unpack download.bz2 Which command chain will count the number of regular files with the name of foo.txt within /home? ls -lR /home | grep foo.txt | wc -l find /home -type f -name foo.txt | wc -l find /home -name foo.txt -count Which of the following command sequences overwrites the file foobar.txt? echo "QUIDQUIDAGIS" >> foobar.txt echo "QUIDQUIDAGIS" < foobar.txt Which of the following commands redirects the output of cmd to the file foo.txt, in which an existing file is overwritten? cmd || foo.txt What does the exit status 0 indicate about a process? The process ended without any problems. The process was terminated by the user. The process couldn't finish correctly. Which of the following commands will output all of the lines with the name Fred in upper or lower case but not the word red from the file data_file? (Choose two) grep -v fred data_file The output of the program date should be saved in the variable actdat. What is the correct statement? actdat=`date` SIMULATION - What two character sequence is present at the beginning of an interpreted script? (Please specify the TWO correct characters only) How can the current directory and its subdirectories be searched for the file named MyFile.xml? find . -name MyFile.xml Which of the following commands will set the variable text to olaf is home? (Choose two) text=olaf\ is\ home Which of the following commands will create an archive file, named backup.tar, containing all the files from the directory /home? tar /home backup.tarAnswer: B Question #243
Answer: A Question #244
Answer: C
Answer: B Question #246
Answer: C Question #247
Answer: B Question #248
Answer: C Question #249
Answer: E Question #250
Answer: A Question #251
Answer: DE Question #252
Answer: A Question #253
Answer: #! Question #254
Answer: A
Answer: AE Question #256
Answer: E