dotfiles/aliases

47 lines
1.6 KiB
Plaintext
Raw Permalink Normal View History

2016-10-14 21:59:34 +02:00
#!/usr/bin/env bash
alias ll='ls -la'
2015-01-13 16:26:46 +01:00
# Easier navigation: .., ..., ~
alias ..="cd .."
alias ...="cd ../.."
alias ~="cd ~"
2019-06-08 02:42:18 +02:00
alias f='open .'
2017-10-16 17:02:02 +02:00
alias c='/Applications/Visual\ Studio\ Code.app/Contents/Resources/app/bin/code .'
2021-01-30 22:15:23 +01:00
alias n='nova .'
# Update All The Things
2014-11-03 17:40:13 +01:00
alias update='update-everything.sh'
2015-01-13 16:26:46 +01:00
# IP addresses
2021-02-16 21:42:11 +01:00
# https://unix.stackexchange.com/a/81699/37512
alias ip="dig @resolver4.opendns.com myip.opendns.com +short"
alias ip6="dig @resolver1.ipv6-sandbox.opendns.com AAAA myip.opendns.com +short -6"
2021-01-30 22:15:23 +01:00
alias iplocal="ipconfig getifaddr en0"
2015-01-13 16:26:46 +01:00
# Copy SSH public key to pasteboard
2019-06-08 02:42:18 +02:00
alias pubkey='more ~/.ssh/id_rsa.pub | pbcopy | printf "✓ Public SSH key copied to pasteboard.\n"'
# Copy GPG public key to pasteboard
2019-06-08 02:42:18 +02:00
alias gpgpubkey='gpg --export --armor $GPG_KEY_ID | pbcopy | printf "✓ Public GPG key copied to pasteboard.\n"'
2015-01-13 16:26:46 +01:00
# Recursively delete `.DS_Store` files
alias cleanup="find . -type f -name '*.DS_Store' -ls -delete"
2014-05-23 16:34:51 +02:00
# Empty the Trash on all mounted volumes and the main HDD
# Also, clear Apples System Logs to improve shell startup speed
alias emptytrash="sudo rm -rfv /Volumes/*/.Trashes; sudo rm -rfv ~/.Trash; sudo rm -rfv /private/var/log/asl/*.asl"
# Show/hide hidden files in Finder
alias show="defaults write com.apple.Finder AppleShowAllFiles -bool TRUE && killall Finder"
alias hide="defaults write com.apple.Finder AppleShowAllFiles -bool FALSE && killall Finder"
2015-06-18 00:43:54 +02:00
# When there's need for nyaning around
alias nyan="telnet nyancat.dakko.us"
2018-03-01 22:39:58 +01:00
# Virus scan with ClamAV
alias virusscan="clamscan -r --bell -i /"
2018-09-20 22:50:11 +02:00
# Docker & Docker Compose
alias dc="docker-compose"