blob: 7292e28d42fc9922b25ad9421893fa1d68347c19 (
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
|
################### ALIASES ##################
alias ls='ls -G'
alias ll='ls -lGh'
alias grep='grep --color=auto'
alias diff='colordiff'
alias less='less -R'
export PAGER="less -R"
################## FUNCTIONS ##################
# bits to human readable value
b2h() {
local suffixes=( 'B' 'K' 'M' 'G' 'T' 'P' 'E' 'Z' 'Y' )
local sindex=1
local val=$1
[[ -z $(echo $1 | grep "^[0-9]*$") ]] && read val
while [[ $(echo $val / 1024 | bc) -ne 0 ]]; do
val=$(echo "scale=2; $val / 1024" | bc)
let sindex=sindex+1
done
echo "${val}${suffixes[$sindex]}"
}
# ignore non-tracked files
git() {
if [[ $# -gt 0 ]] && [[ "$1" == "status" ]]; then
shift
$(which -p git) status -uno "$@"
else
$(which -p git) "$@"
fi
}
|