Menu

22 September 2009

list all files is a directory recursively

You might be furstated with $ls <dir-path> -lR, The better way to do this is
$find <dir-path> -type f

1 comment:

SawRub said...

For listing the contents of present dir
$ echo *| tr " " "\n"