1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-21 15:30:09 +00:00
ohmyzsh/lib/functions.zsh

18 lines
313 B
Bash
Raw Normal View History

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