Something like this, or am I missing something?
Code:
ls -ltaR | grep '^-' | less
If you want just the date and file name:
Code:
ls -ltaR | grep '^-' | awk '{ print $6, $7, $8, $9 }'
I'm not sure what you mean by "or any number of arguments.
Quote:
Any tips on good UNIX resources would also be much appreciated.
This is a short but useful intro:
http://mywiki.wooledge.org/BashGuide
_________________
If you want to talk, please pm me, I'd be glad to hear from you.