Răsfoiți Sursa

find: add unit for mtime

Clarifying that mtime stands for no. of days
Agniva De Sarker 7 ani în urmă
părinte
comite
1e8f60f7cd
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 2 2
      pages/common/find.md

+ 2 - 2
pages/common/find.md

@@ -20,9 +20,9 @@
 
 - Find files using case insensitive name matching, of a certain size:
 
-`find {{root_path}} -size +500k -size -10MB -iname '{{*.TaR.gZ}}'`
+`find {{root_path}} -size {{+500k}} -size {{-10MB}} -iname '{{*.TaR.gZ}}'`
 
-- Delete files by name, older than a certain number of days:
+- Delete files by name, older than 180 days:
 
 `find {{root_path}} -name '{{*.ext}}' -mtime {{+180}} -delete`