Using xargs

hi
i just want to know that how do we use xargs command to find files which are greater than specified memory
in a given directory

Hi.

It's not a function of xargs to do this.

It sounds like a job for find.

pretty confused by what you mean by memory ?! It can be size but ?!

ok, if it is something like, too many arguments -- and memory.. these examples might help you: Hack 22. Xargs Command Examples

i actually meant that i am in a directory i have input a specific size
and now i want to find files which are greater than this size
please help!!!

For example i want to find size that has more larger 10 mb

find . -size +10M -exec ls -lh {} \;

like this ?

And what does that have to do with xargs?