~~~~~ Warning !!!
Content posted here are gained through the real world experience or some may come from training or any other Internet sources. Reading this blog may confuse you or may increase understanding of UNIX/Linux operating system and its component. It might help you to land on Real job or may fire your from the Real job. So, use on your own risk !!! No left or right reserved !!! -Kamal ~~~~~
Wednesday, September 2, 2015
List files not owned by a particular user
Listing files that are not owned by Oracle user.
# cd /opt/oracle
# find . ! -user oracle -ls | more
for aix
# find . -type f -size +40960 -print | xargs ls -l | sort -nk 5 | tail -50
No comments:
Post a Comment