- Process related command
- top - real time view of all process running
- ps -aus - snapshot of all process running
- kill -9 PID - kill a process with PID as process id.
- nohup cmd > logs.out & - Run a process in background and deattach from terminal.
- screen - Start a screen terminal (-r restore, -ls view, Ctrl-A + d deattach screen)
- Filesystem related
- ls -la - list all files in current directory
- **wc -l ** - Count number of lines in a file