Introduction
Up until now you've probably have completed all your tasks using some sort of program, but mostly using your mouse to make actions. Well, there are better and more efficient ways.
- shell vs kernel
- open your shell, many type of shells i.e. zsh, bash, powershell, gitbash
- shells can be used inside programs like terminals
- always take a look at left to know in what context will your command run
touch FILE
- create a filemkdir FOLDER
- create a folderrm FILE
- delete filerm -rf FOLDER
- delete foldercp FILE FILECOPY
- make a copy of a file or foldermv FILE NEWFILE
- rename a file or folderls
- list folder's contentscat FILE
- display file contentscd FOLDER|..
- change directory, .. go up one level, or to go into a folder you type in the name of itpwd
- show>
- redirect data into file (overwrites)>>
- redirect data into file (appends)