-
Notifications
You must be signed in to change notification settings - Fork 0
Linux & Python Introduction
SnifflePiffle edited this page Feb 18, 2024
·
5 revisions
- terminal
- directories
- permissions
- terminal operators
- files
- arguments and switches
- users
- Sensitive Files
- man -> show options of a file (manual)
- echo -> print to the terminal
- pwd -> show working directory
- whoami -> show username
- ls -> show files in a directory
- cd -> change directory
- touch -> create file
- mkdir -> create directory
- cp -> copy file
- mv -> move file
- rm -> delete file
- chmod -> change permissions
- cat -> show content of file
- nano -> simple file editor in the terminal
- diff -> show diferences between two files
- apt -> isntall new packages
- find -> find file in directory and subdirectories
- grep -> find string in file