Created
December 11, 2024 04:25
-
-
Save jaylandro/a75bd08fc703304dd45eeb4f45fd3d1d to your computer and use it in GitHub Desktop.
Terminal Tools for zsh/bash RC
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wttr () { | |
curl wttr.in | |
} | |
moon () { | |
curl wttr.in/moon | |
} | |
geoip () { | |
curl ifconfig.co/json | |
} | |
qrcode () { | |
curl qrenco.de/$1 | |
} | |
map () { | |
telnet mapscii.me | |
} | |
speedtest () { | |
curl -s https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest.py | python - | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment