It just doesn't work
Every time when I want to use find or grep in bash shell, it just doesn't work. Not even after I check the man page. I have to find examples online eventually. It's kinda weird. I'm not trying to make full use of them. The most simple function would suit me just fine. I always get the sequence of the arguments wrong or miss some controller. Sometimes, you have to write it down to memorize something. That's what I'm trying to do. Here are the examples of these two commands.
find files: find -iname '*' ./*(path) -r(search subdirs)
find text within files: grep -i(ignore cases) *(patterns to search) ./*(path) -r(search subdirs)
Labels: Shell
