Quantcast
Channel: UNIX and Linux Forums
Viewing all articles
Browse latest Browse all 16232

Printing more info than find command gives out

$
0
0
Hi,
I am trying to find files that are more than a gig with this command
Code:

find . -size +1073741823c
and it just gives me the names of the files. How do i get it to give me the actual size of the files too?

---------- Post updated at 09:41 AM ---------- Previous update was at 09:37 AM ----------

I just answered my own question
do
Code:

find . -size +1073741823c -exec ls -l {} \;

Viewing all articles
Browse latest Browse all 16232

Trending Articles