1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-01 11:50:26 +00:00
prezto/modules/utility/init.zsh

50 lines
1.2 KiB
Bash
Raw Normal View History

2012-02-01 04:37:51 +00:00
#
# Defines utility functions.
#
# Authors:
# Robby Russell <robby@planetargon.com>
# Suraj N. Kurapati <sunaku@gmail.com>
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
2011-10-12 03:13:58 +00:00
# Serves a directory via HTTP.
alias http-serve='python -m SimpleHTTPServer'
2009-08-31 22:00:38 +00:00
# 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" ]] && mkdir -p "$1" && builtin cd "$1"
2009-08-31 13:03:56 +00:00
}
compdef '_path_files -/' mkdcd 2> /dev/null
# Changes to a directory and lists its contents.
function cdls {
builtin cd "$argv[-1]" && ls "${(@)argv[1,-2]}"
}
compdef _cd cdls 2> /dev/null
# Pushes an entry onto the directory stack and lists its contents.
function pushdls {
builtin pushd "$argv[-1]" && ls "${(@)argv[1,-2]}"
}
compdef _cd pushdls 2> /dev/null
# Pops an entry off the directory stack and lists its contents.
function popdls {
builtin popd "$argv[-1]" && ls "${(@)argv[1,-2]}"
}
compdef _cd popdls 2> /dev/null
# Prints columns 1 2 3 ... n.
function slit {
2012-04-15 00:28:28 +00:00
awk "{ print ${(j:,:):-\$${^@}} }"
}
# Finds files and executes a command on them.
function find-exec {
find . -type f -iname "*${1:-}*" -exec "${2:-file}" '{}' \;
}