cd's to a directory and lists the contents


/ Published in: Bash
Save to your folder(s)

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 public_html shows the contents of public_html in long list reverse time order.


Copy this code and paste it in your HTML
  1. function cl () {
  2. case $1 in
  3. -*) local o=$1; shift;;
  4. esac
  5. cd $* && ls $o
  6. }

URL: http://cutup.org/anize/?bash_tricks

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.