/ Published in: Bash
URL: http://cutup.org/anize/?bash_tricks
for .bashrc, a function that cd's to a directory and lists the contents it takes ls arguments and a directory. for example, cl goes to home dir and lists contents. cl -l goes to ~/ and long lists contents. and cl -lrt publichtml shows the contents of publichtml in long list reverse time order.
Expand |
Embed | Plain Text
function cl () { case $1 in -*) local o=$1; shift;; esac cd $* && ls $o }
You need to login to post a comment.
