From f3e3035de74aa56d9aea78b6d53bf9c62575ca26 Mon Sep 17 00:00:00 2001 From: Cvetomird91 Date: Wed, 30 Dec 2015 20:43:58 +0200 Subject: [PATCH] find: added options for multiple search criteria and empty files added path for -empty option --- pages/common/find.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pages/common/find.md b/pages/common/find.md index 7abc644a7..21c674fa5 100644 --- a/pages/common/find.md +++ b/pages/common/find.md @@ -25,3 +25,11 @@ - delete files by name, older than a certain number of days `find {{root_path}} -name {{'*.py'}} -mtime {{-180d}} -delete` + +- find empty files or directories + +`find {{root_path}} -empty` + +- find files matching more than one search criteria + +`find {{root_path}} -name {{'*.py'}} -or -name {{'*.rb'}}