blob: b5c242e7a26d0479f308158893878256402d1042 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
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 <number-to-convert>'; 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
|