piatok 4. februára 2022

find and size

 find more than 5M files in /etc/ directory 







find /etc/ -size +5M -exec ls -lh {}  \;


find in /etc 


- size +5M = find files bigger than 5M

- exec = execute


ls -lh = list +5m files in /etc/ directory


Žiadne komentáre:

Zverejnenie komentára