What it says in the title but also commands that doesn’t necessarily warrent their own wiki page. Do also have a look at Bash page as there is some overlap between the two
Hosting shell oneliners until i find a more suitable place
man -t bash | ps2pdf - bash.pdf
mpv -fs --really-quiet --ytdl-format High http://twitch.tv/dreamhacksc2
rsync -aAXHv --progress --exclude={"/dev/*","/proc/*","/sys/*","/tmp/*","/run/*","/mnt/*","/media/*","/lost+found"} /* /path/to/backup/folder
wget -p -k http://ExampleSite.com
find $DIR -type f -print0 | xargs -0 sha256sum > $OUTPUT.sha256
egrep -ie "<*HREF=(.*?)>" index.html | cut -d "\"" -f 2 | grep ://
pacman -S perl-image-exiftool
exiftool -all= image.ext
see ffmpeg page
<() It’s a shell feature to execute a command and
return a temporary filename to its standard output. For example, if you
want to diff the output of two commands, you can do it with:
diff <( command1 ) <( command2 )
sort -h can sort human readable output like du -h
egrep -ie "<*HREF=(.*?)>" index.html | cut -d "\"" -f 2 | grep ://
find . -type f -print0 | xargs -0 du -h | sort -hr
Last modified: Sat Apr 19 17:30:18 2025