From 4a41f7e76b76617c22781d7b5bc3c2d7cc8fb8b9 Mon Sep 17 00:00:00 2001 From: zeus Date: Mon, 5 Oct 2020 14:06:03 +0300 Subject: [PATCH] find and grep --- find/2_Combine_find_and_grep_with_exec/codeanswer | 1 + find/2_Combine_find_and_grep_with_exec/codehelp | 0 find/2_Combine_find_and_grep_with_exec/q-info | 9 +++++++++ 3 files changed, 10 insertions(+) create mode 100644 find/2_Combine_find_and_grep_with_exec/codeanswer create mode 100644 find/2_Combine_find_and_grep_with_exec/codehelp create mode 100644 find/2_Combine_find_and_grep_with_exec/q-info diff --git a/find/2_Combine_find_and_grep_with_exec/codeanswer b/find/2_Combine_find_and_grep_with_exec/codeanswer new file mode 100644 index 0000000..cbe505b --- /dev/null +++ b/find/2_Combine_find_and_grep_with_exec/codeanswer @@ -0,0 +1 @@ +find /usr -type f -perm 0777 | grep conf diff --git a/find/2_Combine_find_and_grep_with_exec/codehelp b/find/2_Combine_find_and_grep_with_exec/codehelp new file mode 100644 index 0000000..e69de29 diff --git a/find/2_Combine_find_and_grep_with_exec/q-info b/find/2_Combine_find_and_grep_with_exec/q-info new file mode 100644 index 0000000..9dab397 --- /dev/null +++ b/find/2_Combine_find_and_grep_with_exec/q-info @@ -0,0 +1,9 @@ + +Try to run + +[source,sh] +---- +find /usr -type f -perm 0777 | grep conf +---- + +and see the Results!