Hi,
Here's one way:
find . -type f -name "a*" -exec ls {} \;
If this wokrs for you change the ls to rm, the ls is there for testing the a*.
See man find and online docs for details of the find command. Do be carefull with the -exec rm command. Test first!!
Hope this helps.
Last edited by anon237; 01-19-2005 at 12:35 PM.
|