examples of find command in linux
To list all zero-length files, use this command: # find . -empty -exec ls {} \; Find all files owned by user "root" under /var # find /var -user root Find all files in group "users" under /var # find /var -group users Size can be specified in blocks, bytes, works, Kilobytes, Megabytes or Gigabyte...
Continue reading ...