[Ilugc] finding file size and its date

  • From: gopal@xxxxxxxxxxxxxxxxx (Gopalarathnam Venkatesan)
  • Date: Tue Oct 31 14:42:20 2006

Ashok Antony wrote:

hi all,

I would like to find all the files which has the size above 10MG and its time 
of creation.

how to acheive the above task in a single command ?


Read find(1).

shell> find . -type f -size +10485760c -print

You can use -ls primary in find(1) to get ls -l like output.

shell> find . -type f -size +10485760c -ls -print

-- 
Gopalarathnam Venkatesan

http://gopalarathnam.com/

Other related posts: