[SOLVED]prints the names of all files that are larger than 500 Kilobytes.
#10:17 01/07/2015
find /usr/src -name '*.c' -size +500k -print
Here is a typical use of `find'. This example prints the names of all files in the directory tree rooted in /usr/src' whose name ends with `.c' and that are larger than 500 Kilobytes.
No comments:
Post a Comment