CMD Flashcards

1
Q

What is a CLI?

A

A Command Line Interface that allows you to traverse and modify data using command lines

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is a GUI?

A

A Graphical User Interface that allows you to traverse and modify data displayed using graphics

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q
Give at least one use case for each of the commands:
man
cat
ls
pwd
echo
touch
mkdir
mv
rm
cp
A

man: see how to use other commands
cat: print contents of a file into the terminal
ls: print files and directories in the current directory
pwd: get the complete path the any directory
echo: print a string into the terminal, and potentially save it
touch: create new files with no contents inside
mkdir: make new directories
mv: move files and directories
rm: delete files and directories
cp: clone files and directories

How well did you know this?
1
Not at all
2
3
4
5
Perfectly