projects
/
zsh.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
add the functions needed for some keybindings
[zsh.git]
/
.zsh
/
functions
/
nicemount
1
# -*- mode:sh -*-
2
3
# nice mount (http://catonmat.net/blog/another-ten-one-liners-from-commandlingfu-explained)
4
# displays mounted drive information in a nicely formatted manner
5
(echo "DEVICE PATH TYPE FLAGS" && mount | awk '$2="";1') | column -t
6