mirror of
https://github.com/VectorKappa/dotfiles.git
synced 2025-12-19 08:16:10 +01:00
76 lines
2.1 KiB
Bash
76 lines
2.1 KiB
Bash
#!/bin/zsh
|
||
|
||
# Easier navigation: .., ..., ...., ....., ~ and -
|
||
alias ..="cd .."
|
||
alias cd..="cd .."
|
||
alias ...="cd ../.."
|
||
alias ....="cd ../../.."
|
||
alias .....="cd ../../../.."
|
||
alias ......="cd ../../../../.."
|
||
|
||
##* Colours!
|
||
alias ls="command ls --color=auto"
|
||
alias grep='grep --color=auto'
|
||
alias fgrep='fgrep --color=auto'
|
||
alias egrep='egrep --color=auto'
|
||
|
||
# Shortcuts
|
||
alias g="git"
|
||
alias h="history"
|
||
alias j="jobs"
|
||
|
||
# alternative to tail -f
|
||
alias lessf="less +F"
|
||
|
||
# List all files colorized in long format
|
||
alias l="ls -l"
|
||
alias ll="ls -lah"
|
||
|
||
# List all files colorized in long format, including dot files
|
||
alias la="ls -la"
|
||
|
||
# List only directories
|
||
alias lsd="ls -l | grep --color=never '^d'"
|
||
|
||
# Enable aliases to be sudo’ed
|
||
alias sudo='sudo '
|
||
|
||
# Get week number
|
||
alias week='date +%V'
|
||
|
||
# Stopwatch
|
||
alias timer='echo "Timer started. Stop with Ctrl-D." && date && time cat && date'
|
||
|
||
# Dice for the undecided
|
||
alias dice='echo $[ 1 + $RANDOM % 6 ]'
|
||
alias yn='[ $[ $RANDOM % 2 ] == 0 ] && echo "Yes" || echo "No"'
|
||
|
||
# IP addresses
|
||
alias myip="dig +short myip.opendns.com @resolver1.opendns.com"
|
||
alias localip="ifconfig wlan0 | grep 'inet addr' | cut -d ':' -f 2 | cut -d ' ' -f 1"
|
||
alias ips="ifconfig -a | grep -o 'inet6\? \(addr:\)\?\s\?\(\(\([0-9]\+\.\)\{3\}[0-9]\+\)\|[a-fA-F0-9:]\+\)' | awk '{ sub(/inet6? (addr:)? ?/, \"\"); print }'"
|
||
|
||
# Canonical hex dump; some systems have this symlinked
|
||
command -v hd > /dev/null || alias hd="hexdump -C"
|
||
|
||
# URL-encode strings
|
||
alias urlencode='python -c "import sys, urllib as ul; print ul.quote_plus(sys.argv[1]);"'
|
||
|
||
# Ring the terminal bell
|
||
alias ding="tput bel"
|
||
|
||
# Intuitive map function
|
||
# For example, to list all directories that contain a certain file:
|
||
# find . -name .gitattributes | map dirname
|
||
alias map="xargs -n1"
|
||
|
||
# Reload the shell (i.e. invoke as a login shell)
|
||
alias reload="exec $SHELL -l"
|
||
|
||
# See if connection works
|
||
alias p="ping 1.1.1.1"
|
||
|
||
# Print each PATH entry on a separate line
|
||
alias path='echo -e ${PATH//:/\\n}'
|
||
|
||
alias cantbebothered='git add -a && git commit -m $(curl -s http://whatthecommit.com/index.txt | uwuify | cowsay -f $(ls /usr/share/cowsay/cows/ | shuf -n1) | lolcat ) && git push' |