2009-09-01 00:00:15 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2009-09-01 00:48:09 +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
|
|
|
|
}
|
2010-12-24 23:20:57 +01:00
|
|
|
|