linked linked linkedin whatsapp remove
Feedback

Solaris Quiz Solaris

To find only those files larger than 400 blocks in the current working directory, you use:

du | grep -e "4??"
ls -ls | grep 400
find . -exec ls -s \; -print
find . -size +400 -print

Answer:
find . -size +400 -print

Note: This Question is unanswered, help us to find answer for this one