Last active
April 21, 2018 01:13
-
-
Save dylanmtaylor/e4176e339e0e1f4c07e5b807cfa9ed9d to your computer and use it in GitHub Desktop.
Aliases and Snippets
This file contains 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
# Update all the things on Ubuntu | |
alias dup="sudo apt clean all; sudo apt update; sudo apt -y full-upgrade; sudo flatpak update; sudo snap refresh; sudo apt autoremove" | |
# Check primary nvme drive status | |
alias nvmeck='sudo smartctl -a /dev/nvme0' | |
# Connect to my OpenVPN server | |
alias ovpn='sudo openvpn ~/openvpn_cert.ovpn' | |
# Fetch latest ISO for OpenSUSE Tumbleweed | |
alias tumbleweed='wget -N http://download.opensuse.org/tumbleweed/iso/openSUSE-Tumbleweed-DVD-x86_64-Current.iso' | |
# Fortune-telling rainbow cow. For fun. | |
fortune | cowsay | lolcat |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment