2015-11-02 23:47:10 +01:00
|
|
|
[ "$(uname -s | tr '[:upper:]' '[:lower:]')" = 'linux' ] && alias ls='ls --color=auto'
|
|
|
|
alias ll='ls -lihF'
|
|
|
|
alias la='ls -A'
|
|
|
|
alias l='ll -A'
|
|
|
|
|
|
|
|
alias sudo='sudo '
|
|
|
|
alias grep='grep -n --color=auto'
|
|
|
|
alias j='jobs'
|
|
|
|
alias df='df -h'
|
|
|
|
alias du='du -ch'
|
2016-10-30 12:28:56 +01:00
|
|
|
alias mount_ro='mount -o ro,noexec,noatime,nodev,nosuid,noiversion'
|
2015-11-03 00:28:43 +01:00
|
|
|
hash tree 2>/dev/null && alias t='tree'
|
2015-11-02 23:47:10 +01:00
|
|
|
hash htop 2>/dev/null && alias top='htop'
|
2016-07-28 18:22:44 +02:00
|
|
|
hash clang-format 2>/dev/null && alias clang-format='clang-format -style="{BasedOnStyle: llvm, IndentWidth: 4, AllowShortFunctionsOnASingleLine: None, KeepEmptyLinesAtTheStartOfBlocks: false}"'
|
2015-11-02 23:47:10 +01:00
|
|
|
hash xscreensaver-command 2>/dev/null && alias lock='xscreensaver-command --lock'
|
|
|
|
hash sqlmap 2>/dev/null && alias sqlmap='sqlmap --user-agent="Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)"'
|
|
|
|
hash sqlmap 2>/dev/null && alias sqlmap-tor='sqlmap --tor --tor-type=SOCKS5'
|
2016-12-05 23:29:18 +01:00
|
|
|
hash youtube-dl 2>/dev/null && alias audio-dl='youtube-dl -x --audio-quality 0 --audio-format "vorbis"'
|
2015-11-02 23:47:10 +01:00
|
|
|
|
|
|
|
if hash chromium 2>/dev/null; then
|
|
|
|
chromium-tor() {
|
|
|
|
killall chromium
|
|
|
|
chromium --incognito --proxy-server="socks://localhost:9050"
|
|
|
|
}
|
|
|
|
fi
|
|
|
|
|
|
|
|
if hash dig 2>/dev/null; then
|
|
|
|
istheinternetonfire() {
|
|
|
|
txt=$(dig +short txt istheinternetonfire.com)
|
|
|
|
if hash cowsay 2>/dev/null; then
|
|
|
|
echo "$txt" | cowsay
|
|
|
|
else
|
|
|
|
echo "$txt"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
fi
|