functions.zsh 269 Bytes
Newer Older
1
2
function zsh_stats() {
  history | awk '{print $2}' | sort | uniq -c | sort -rn | head
Robby Russell's avatar
Robby Russell committed
3
4
5
6
}

function uninstall_oh_my_zsh() {
  /bin/sh $ZSH/tools/uninstall.sh
Robby Russell's avatar
Robby Russell committed
7
8
}

9
10
11
12
function upgrade_oh_my_zsh() {
  /bin/sh $ZSH/tools/upgrade.sh
}

Geoff Garside's avatar
Geoff Garside committed
13
14
15
16
function take() {
  mkdir -p $1
  cd $1
}
17