function todo { ack TODO $@ | sed -e 's/.*TODO //;s/ \*\/$//;s/ -->//' | LC_ALL=C sort -u } function which { (alias; declare -f) | /usr/bin/which --tty-only --read-alias --read-functions --show-tilde --show-dot $@ } #export -f which function trash { mkdir -p "$HOME/.trash" for file in "$@"; do mv "$file" "$HOME/.trash/$(basename $file).$(date +%Y%m%d-%H%M%S)" done } # Add this to your crontab: # 43 0 * * 3 find ~/.trash -mindepth 1 -mtime +90 -delete wttr() { if [[ -z "$1$2" ]]; then 2="m0q" elif [[ -z "$2" ]]; then echo; fi curl -q -s --compressed -H "Accept-Language: ${LANG%_*}" \ "https://wttr.in/${1:-Pleasant Grove}?${2:-m0Q}" # "format=%l%0A%c+%t+%w+%m" } hex() { emulate -L zsh if [[ -n "$1" ]]; then printf "%X\n" $1 else print 'Usage: hex '; fi } httpless() { http --pretty=all --print=hb "$@" | less -R } colors() { for i in `seq 0 21`; do echo -ne "\e[48;5;${i}m ${i} " done; echo -e "\e[0m" } export PASSWORD_STORE_ENABLE_EXTENSIONS=true