# # Defines utility functions. # # Authors: # Robby Russell # Suraj N. Kurapati # Sorin Ionescu # # Load dependencies. omodload 'alias' # Serves a directory via HTTP. alias http-serve='python -m SimpleHTTPServer' # Displays user owned processes status. alias pmine='ps -U "$USER" -o pid,%cpu,%mem,command' # Makes a directory and changes to it. function mkdcd { [[ -n "$1" ]] && builtin mkdir -p "$1" && builtin cd "$1" } compdef '_path_files -/' mkdcd 2> /dev/null # Changes to a directory and lists its contents. function cdll { builtin cd "$1" && ll } compdef _cd cdll 2> /dev/null # Pushes an entry onto the directory stack and lists its contents. function pushdll { builtin pushd "$1" && ll } compdef _cd pushdll 2> /dev/null # Pops an entry off the directory stack and lists its contents. function popdll { builtin popd "$1" && ll } compdef _cd popdll 2> /dev/null # Prints columns 1 2 3 ... n. function slit { awk "{ print ${(j:,:):-\$${^@}} }" } # Finds files and executes a command on them. function find-exec { find . -type f -iname "*${1:-}*" -exec "${2:-file}" '{}' \; }