-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.zsh
67 lines (60 loc) · 1.53 KB
/
custom.zsh
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# modified
if grep --color "a" <<<"a" &>/dev/null; then
alias grep='grep --color=auto'
fi
if egrep --color "a" <<<"a" &>/dev/null; then
alias egrep='egrep --color=auto'
fi
if fgrep --color "a" <<<"a" &>/dev/null; then
alias fgrep='fgrep --color=auto'
fi
alias mkdir='mkdir -p -v'
alias df='df -h'
alias l='ls --color=auto'
alias ll='l -la'
# new
alias path='echo -e ${PATH//:/\\n}'
alias now='date "+%T"'
alias today='date +"%d-%m-%Y"'
alias ports='netstat -tulpn'
alias tree="find . -print | sed -e 's;[^/]*/;|____;g;s;____|; |;g'"
alias lines='wc -l'
extract () {
if [ -f $1 ] ; then
case $1 in
*.tar.bz2) tar xvjf $1 ;;
*.tar.gz) tar xvzf $1 ;;
*.bz2) bunzip2 $1 ;;
*.rar) rar x $1 ;;
*.gz) gunzip $1 ;;
*.tar) tar xvf $1 ;;
*.tbz2) tar xvjf $1 ;;
*.tgz) tar xvzf $1 ;;
*.zip) unzip $1 ;;
*.Z) uncompress $1 ;;
*.7z) 7za x $1 ;;
*) echo "don't know '$1'..." ;;
esac
else
echo "'$1' is not a valid file!"
fi
}
_dig() {
local domain=$1;
local type=$2;
dig "$domain" -t "$type" \
| sed -n '/;; ANSWER SECTION/,/^$/p' \
| sed '1d' \
| sed '/^$/d';
}
adig() {
local domain=$1;
local types;
types=(soa ns a aaaa cname ds dnskey rrsig nsec txt mx);
for t in "${types[@]}"; do
_dig "$domain" "$t"
done
}
weather() {
curl -s "http://wttr.in/${1}"
}