Whenever I want to search the file content in a directory and all subdirectories I type this...
grep -r 'searchterm' *
This works on Ubuntu. However on Arch (using armv6 on a raspberry pi) I get this error.
grep: *: No such file or directory
How do I search for a file by file contents recursivily on Arch arm? Thanks.