This is a draft cheat sheet. It is a work in progress and is not finished yet.
Minimum System Requirements
RAM |
1GiB |
Storage |
10 GiB |
Connectivity |
Network Card |
File System |
XFS |
Shell
Alias |
|
Internal commands |
Part of the shell itself. Not loaded from disk. |
External command |
Exists as executable file on disk. |
Locate command |
|
Run command in current dir |
|
$PATH |
Variable of list where cmds are found |
show $PATH contents |
|
|
|
I/O Redirection
STDIN |
< or 0< |
STDOUT |
> or 1> |
STDERR |
2> |
Write to file (initial/overwrite) |
|
Append to file |
|
Send STDERR to STDOUT |
|
STDOUT to another command |
|
Hide STDERR but show contents |
|
Hide STDERR but redirect contents |
ls badpath 2> /dev/null > output
|
|
|
|