What is a CLI?
command-line interface
What is a GUI?
graphical user interface
What are the three virtues of a great programmer?
laziness, impatience, hubris
Give at least one use case for each of the commands listed in this exercise.
man
cat
ls
pwd
echo
touch
mkdir
mv
rm
cp
man: reference manual
cat: concatenate files and print to terminal/ create file with content
ls: list current directory
pwd: print current working directory
echo: display line of text
touch: change file timestamps/ create file with no content
mkdir: make directories/ folders
mv: move/rename files
rm: remove files or directories
cp: copy files and directories