find /home -name 'test*'Find all files owned by user1 that are larger than 20MB:
find /home -user user1 -size +20MLook for a text1 in all files in /etc:
find /etc -exec grep -l text1 {} \;List txt files starting from current directory with phrase 'find me' inside:
find . -name '*.txt' | xargs grep 'find me'
No comments :
Post a Comment