From 4e0f0c8090ed2613a9450d3c0f2e95fd458e4273 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dar=C3=ADo=20Here=C3=B1=C3=BA?= Date: Sat, 4 May 2024 23:07:45 -0300 Subject: [PATCH] find: fix typo in line 36 --- find | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/find b/find index a02b1aa7..62a45501 100644 --- a/find +++ b/find @@ -33,7 +33,7 @@ find ./path/ -name '*.txt' -exec cat '{}' \; # To find files with extension '.txt' and look for a string into them: find ./path/ -name '*.txt' | xargs grep 'string' -# To find files with size bigger than 5 Mebibyte and sort them by size: +# To find files with size bigger than 5 Megabyte and sort them by size: find . -size +5M -type f -print0 | xargs -0 ls -Ssh | sort -z # To find files bigger than 2 Megabyte and list them: