Quote:
Originally Posted by mcraul
Code:
# find /var/ -type -size +10000 -mtime -20 -exec ls -l {} \;
find: invalid argument `-size' to `-type'
Did i run this wrong?
thanks
|
-type needs a qualifier (file, link, directory) so it should look like:
Code:
find /var/ -type f -size +10000 -mtime -20 -exec ls -l {} \;
find: invalid argument `-size' to `-type'