command line Flashcards
What is a CLI?
command line interface
What is a GUI?
graphical user interface
one use case for the command: man
“man” as in “manual”
man git
one use case for the command: cat
“cat” as in print the contents
cat
one use case for the command: ls
list the files and directories of the respective path you are in
ls
one use case for the command: pwd
display the respective you are in; “pwd” means print working directory
pwd
one use case for the command: mv
“mv” literally means “move”, i.e.,
let’s say i have main.c in my home directory and want to move into a folder within my home directory:
mv main.c
one use case for the command: rm
“rm” literally means “remove”, i.e.,
rm main.c
one use case for the command: mv
“mv” means “move”, i.e.,
let’s say i have main.c in my home directory and want to move into a folder within my home directory:
mv main.c
one use case for the command: rm
“rm” means “remove”, i.e.,
rm main.c
one use case for the command: cp
“cp” means “copy”
cp favicon.ico assets/images/