From 4cd93b09b3a179515630114078739564a35af38d Mon Sep 17 00:00:00 2001 From: katherine Date: Sun, 19 Feb 2017 03:47:19 -0700 Subject: move remaining funcs from .zshrc everything should be modular now also, cleaned up make-gif to properly parse arguments and check things --- .zshrc-linux | 27 --------------------------- 1 file changed, 27 deletions(-) (limited to '.zshrc-linux') diff --git a/.zshrc-linux b/.zshrc-linux index 904ee51..f78c226 100644 --- a/.zshrc-linux +++ b/.zshrc-linux @@ -7,30 +7,3 @@ alias ls='ls --color=auto' alias ll='ls -lh --color=auto' 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 -} -- cgit v1.2.3