[sudo](/man/sudo) !!
[python3](/man/python3) -m http.server 8000
[telnet](/man/telnet) towel.blinkenlights.nl
[mplayer](/man/mplayer) -vo caca video.mp4
[screenfetch](/man/screenfetch) or [neofetch](/man/neofetch)
[fortune](/man/fortune) | [cowsay](/man/cowsay)
echo "text" | [pv](/man/pv) -qL 10
[cmatrix](/man/cmatrix)
[mkdir](/man/mkdir) project{01..100}
[cd](/man/cd) -
[cp](/man/cp) file{,.bak}
^wrong^correct^
[curl](/man/curl) ifconfig.me
!!
Ctrl+X Ctrl+E
[jq](/man/jq) .
[du](/man/du) -h . | [sort](/man/sort) -hr | head -20
[df](/man/df) -h
[du](/man/du) -sh * | [sort](/man/sort) -hr
[tar](/man/tar) czf backup.tar.gz directory/
[tar](/man/tar) xzf archive.tar.gz
[watch](/man/watch) command
[pkill](/man/pkill) process_name
[top](/man/top)
[ss](/man/ss) -tuln
< /dev/urandom [tr](/man/tr) -dc A-Za-z0-9 | head -c 32; echo
Ctrl+R
[wc](/man/wc) -l file.txt
[sort](/man/sort) file | [uniq](/man/uniq)
[find](/man/find) . -name "*.log"
[find](/man/find) . -type f -size +100M
[rsync](/man/rsync) -ah --progress src dest
[wget](/man/wget) -c url
[sshfs](/man/sshfs) user@host:/remote /local
command -v cmd >/dev/null && echo yes
[ls](/man/ls) -lt
[grep](/man/grep) -ir "text" .
> file.txt
[mkdir](/man/mkdir) dir && [cd](/man/cd) dir
[tar](/man/tar) cjf archive.tar.bz2 dir/
[curl](/man/curl) wttr.in
[curl](/man/curl) v2.wttr.in
[xmllint](/man/xmllint) --format file.xml
[convert](/man/convert) input.jpg output.png
[convert](/man/convert) -delay 10 -loop 0 *.png animation.gif
[sl](/man/sl)
[neofetch](/man/neofetch)
[tail](/man/tail) -f logfile
[sed](/man/sed) -i 's/old/new/g' *.txt
[ls](/man/ls) -d */
[tree](/man/tree)
command | [xclip](/man/xclip) -sel clip
[ln](/man/ln) -s target link
[git](/man/git) branch --show-current
[find](/man/find) . -mtime +30 -delete
[find](/man/find) . -type d -empty -delete
[cal](/man/cal)
[cal](/man/cal) -3
[qrencode](/man/qrencode) -t ANSI "text"
[script](/man/script) session.log
[scriptreplay](/man/scriptreplay) -t timing.log session.log
[upower](/man/upower) -i $(upower -e | grep BAT) | grep percentage
[sensors](/man/sensors)
[crontab](/man/crontab) -l
[gpg](/man/gpg) -c file
[mount](/man/mount) -t tmpfs -o size=1G tmpfs /mnt/ram
command &
[nohup](/man/nohup) command &
[split](/man/split) -b 1G largefile part-
[cat](/man/cat) part-* > largefile
[sha256sum](/man/sha256sum) file
[yt-dlp](/man/yt-dlp) url
[mpv](/man/mpv) url
[nl](/man/nl) file.txt
[dos2unix](/man/dos2unix) file
source ~/.bashrc
[uptime](/man/uptime)
command | [pv](/man/pv) -s $(du -b input | cut -f1)
[pdftotext](/man/pdftotext) file.pdf - | [less](/man/less)
[dd](/man/dd) if=iso.iso of=/dev/sdX bs=4M status=progress
[dd](/man/dd) if=/dev/urandom of=/dev/sdX
[lshw](/man/lshw) -short
[dd](/man/dd) if=/dev/zero of=test bs=1G count=1 oflag=dsync
echo -e "\a"
[timedatectl](/man/timedatectl)
for i in {1..50}; do echo -e "\e[${((RANDOM%7+31))}m✨\e[0m"; sleep 0.1; done
echo "text" | [lolcat](/man/lolcat)
[watch](/man/watch) -n 1 date
[ls](/man/ls) | [wc](/man/wc) -l
[find](/man/find) . -type l -! -exec test -e {} \; -print
[ruby](/man/ruby) -run -e httpd . -p 8000
[php](/man/php) -S localhost:8000
[npx](/man/npx) http-server
alias r='fc -s'
history | awk '{print $2}' | sort | uniq -c | sort -nr | head
a() { case $1 in *.tar.gz) tar xzf $1;; *.zip) unzip $1;; esac; }; a file
[truncate](/man/truncate) -s 10G file.img
[gs](/man/gs) -dBATCH -dNOPAUSE -sDEVICE=pdfwrite -sOutputFile=out.pdf in1.pdf in2.pdf
[ffmpeg](/man/ffmpeg) -i input.mp4 output.gif
for f in *.txt; do mv "$f" "${f%.txt}.bak"; done
[git](/man/git) status -sb
while true; do echo -e "HTTP/1.1 200 OK\n\n$(date)" | nc -l 8080; done