find

1

find / -name ".*" -print -xdev

Find and print out all hidden files. Use the -iname switch for case insensitive matching.

redaudit's picture
Submitted by redaudit 2 years 23 weeks ago – Made popular 2 years 23 weeks ago
Category: Linux   Tags:
1

find / -size +10M -print

Find files larger than 10 megabytes on a system.

redaudit's picture
Submitted by redaudit 2 years 23 weeks ago – Made popular 2 years 23 weeks ago
Category: Linux   Tags:
1

find / -nouser -o -nogroup

Find files that do not have an owner or a group.

redaudit's picture
Submitted by redaudit 2 years 23 weeks ago – Made popular 2 years 23 weeks ago
Category: Linux   Tags:
1

find / -iname "*.*" -mtime -7

Find all files modified in the past week. The -iname switch permits case insensitive matches.

redaudit's picture
Submitted by redaudit 2 years 23 weeks ago – Made popular 2 years 23 weeks ago
Category: Linux   Tags:
Page generated in: 0.000779 seconds.