CMD Flashcards
1
Q
What is a CLI?
A
A Command Line Interface that allows you to traverse and modify data using command lines
2
Q
What is a GUI?
A
A Graphical User Interface that allows you to traverse and modify data displayed using graphics
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