Linux #2

Created by: @ben

Imported and translated from Linux #2 by pascal_melot on Kahoot.

👁 Public

Tagged as: Science

History:

  • Last updated 2 years ago
  • Created 2 years ago

Played 2 times

Practiced 1 times

Host Practice
View all comments
What is the standard shell on GNU/Linux?
KSH (K Shell)
CSH (C Shell)
CLASH (Come Linux Again Shell)
BASH (Bourne Again Shell)
What does the shell prompt look like when you're root?
@
$
%
#
What does the tilde (~) stand for?
a temporary directory
the folder with the system files
the home directory
a cache directory
Which BASH command prints text?
echo
write
sprint
println
Which symbol is used for command line arguments?
--
/
-
\
How can you shorten this command : ls -l -h -t ?
ls -lht
it can't be shortened
ls --lht
ls /lht
What's the "/home" part in the command "ls -l /home" called?
argument
source
prompt
target
How do you print the content of variable X in BASH?
echo $X
echo X
$X
print X
Which command prints the current directory?
cd
pwd
chmod
lswd
When a file starts with a dot (.) that means...
it can only be read once
it's reserved for the system
it's about to be deleted
it's hidden
Which syntax is used to execute command2 after command1 finished successfully?
command1 #! command2
command1 && command2
command1 > command2
command1 || command2
Which syntax is used to execute command2 after command1 finished with an error?
command1 && command2
command1 #! command2
command1 || command2
command1 > command2