Home

Search IconIcon to open search

Useful terminal and shell commands


Be careful with mv and rm commands! You can easily overwrite or destroy valuable data. Use with caution. Back up files or use version control!

# Misc (Shell)

wc - count words, lines, etc.
less - read smth long in terminal instead of printing it
gunzip file.gz - unzip gzipped files
ls -R - recursively list files
whereis/which - where is a certain program
hexdump - show bytes. hexdump -vC is handy.

# Other

awk - execute data queries
cut - awk na minimalkah
grep - search for a particular text
Managing users in Linux

# Tips