Computer Science, asked by anjli8219, 9 months ago

display names of all files in home directory whose size is bigger than 1MB and smaller than 5MB(in LINUX) ​

Answers

Answered by harshsingh522862
1

Answer:

where . searches from the directory you start the command.

-type f will find files and not directories

-size +5c means larger than 5 bytes.

-size -10c means smaller than 10 bytes.

Similar questions