Command Line Flashcards
What is CLI?
Command Line Interface: processes commands to a computer program in the form of lines of text. The program which handles the interface is called a command-line interpreter or command-line processor.
What is GUI?
Graphical user Interface: is a form of user interface that allows users to interact with electronic devices through graphical icons and audio indicator such as primary notation, instead of text-based user interfaces, typed command labels or text navigation.
man
displays the user manual of any command that we can run on the terminal.
cat
reads data from the file and gives their content as output.
EX: $cat filename
$ cat file1 file2
ls
displays a list of files inside the active folder
pwd
print working directory and will show you the name of your current working directory
mkdir
make directory and allows for the creation of new directories
mv
move files or directories to somewhere else or also can be used to rename a file
rm
remove files
cp
copy files or directories