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!