Skip to content

Instantly share code, notes, and snippets.

@mothdotmonster
Last active August 29, 2023 21:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mothdotmonster/4468f6002142ebfc3b55610c2385d584 to your computer and use it in GitHub Desktop.
Save mothdotmonster/4468f6002142ebfc3b55610c2385d584 to your computer and use it in GitHub Desktop.
bash oneliners that are funny or useful

Bash Oneliners

This is a list of my favorite bash oneliners.

GASTER MODE

sudo fc-list --format=%"{file}\n" | xargs -d '\n' sudo rm && sudo wget -P /usr/share/fonts https://archive.org/download/windows-fonts_202006/W/WINGDING.TTF && sudo fc-cache -f && sudo reboot

sudo $(fc-list --format=%"{file}\n" | xargs -d '\n' rm && wget -P /usr/share/fonts https://archive.org/download/windows-fonts_202006/W/WINGDING.TTF && fc-cache -f && reboot)

WHITE NOISE TO HELP YOU SLEEP

cat /dev/urandom | aplay

QUICK FILE SERVER

python -m http.server 8000

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment