]> git.rmz.io Git - dotfiles.git/blob - zsh/functions/mount
vim/cpp: add noexcept qualifier to rule5 move ctr/opr
[dotfiles.git] / zsh / functions / mount
1 #!/bin/zsh
2
3 function mount() {
4 if [[ $# -eq 0 ]]; then
5 /bin/mount | column -t
6 else
7 /bin/mount "$@"
8 fi
9 }