bunzip2 and gunzip use identical compression algorithms? True False
Introduction to Linux I
Which command will print the contents of words.xz to standard...
Which command will print the contents of words.xz to standard output? bzcat words.xz | words.txt...
The bzcat command prints the contents of .bz2 files to standard...
The bzcat command prints the contents of .bz2 files to standard output: True or False? True False
To view the contents of foo.gz without uncompressing it, use:
To view the contents of foo.gz without uncompressing it, use: gzip -i foo.gz gunzip foo.gz untar -u...
By default the gzip command replaces uncompressed files with...
By default the gzip command replaces uncompressed files with compressed files. True or False? True...
The proper command to list current tmux sessions is?
The proper command to list current tmux sessions is? tmux -a tmux list-sessions tmux -ls tmux -l
The screen command can detach and re-attach terminal sessions...
The screen command can detach and re-attach terminal sessions. True or False? True False
The watch command’s default interval is?
The watch command’s default interval is? 10 minutes 12 tics 2 seconds none, the user must specify...
Which command will find all processes owned by user fred?
Which command will find all processes owned by user fred? pgrep -i | fred ps fred | grep -1 process...
To execute a command called cmd1 as a foreground process, you...
To execute a command called cmd1 as a foreground process, you would type: cmd1 fg cmd1 foreground...
In order to run a command called cmd1 in the background, you...
In order to run a command called cmd1 in the background, you would type: cmd1& start -b cmd1...
In a command pipeline, the output of one command is sent to...
In a command pipeline, the output of one command is sent to another command as output. True or...
Which command can be used to send the output of a command to...
Which command can be used to send the output of a command to both stdout and a file: ls 2 |...
Which two symbols can effectively send stdin to a command...
Which two symbols can effectively send stdin to a command? (choose two) > ! < |
Which of the following commands will take the standard output of...
Which of the following commands will take the standard output of the echo command and put it into...