Dec 12, 2001 #1 YO123 MIS Jul 26, 2001 77 BE I am trying to get all the files with a certain name in the system. No problem: find ./ -name "xxxx.x" -print But the output is just the path with the filename. I really would like to have also the size, date, etc. Can anyone help me with this tnx YO
I am trying to get all the files with a certain name in the system. No problem: find ./ -name "xxxx.x" -print But the output is just the path with the filename. I really would like to have also the size, date, etc. Can anyone help me with this tnx YO
Dec 12, 2001 1 #2 PSD Instructor Apr 25, 2000 392 GB This should do the trick: find / -name "***" -exec ls -l {} \; and if you want to output this to a file: find / -name "***" -exec ls -l {} \; > /tmp/output Best of luck. PSD IBM Certified Specialist - AIX V4.3 Systems Support IBM Certified Specialist - AIX V4 HACMP Upvote 0 Downvote
This should do the trick: find / -name "***" -exec ls -l {} \; and if you want to output this to a file: find / -name "***" -exec ls -l {} \; > /tmp/output Best of luck. PSD IBM Certified Specialist - AIX V4.3 Systems Support IBM Certified Specialist - AIX V4 HACMP
Dec 12, 2001 Thread starter #3 YO123 MIS Jul 26, 2001 77 BE This is what I was looking for tnx YO Upvote 0 Downvote