prezto_config/lib/functions.zsh

18 lines
269 B
Bash
Raw Normal View History

function zsh_stats() {
history | awk '{print $2}' | sort | uniq -c | sort -rn | head
2009-09-01 00:00:38 +02:00
}
function uninstall_oh_my_zsh() {
/bin/sh $ZSH/tools/uninstall.sh
2009-09-01 00:09:34 +02:00
}
function upgrade_oh_my_zsh() {
/bin/sh $ZSH/tools/upgrade.sh
}
2009-08-31 15:03:56 +02:00
function take() {
mkdir -p $1
cd $1
}