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