I use the following to grep in the current directory and all subdirectories:
grep -r 'some text' */*
This works fine in Cygwin, but when I configure Windows cmd emulators like Console2 or ConEmu to use Cygwin, the command does not work:
grep: */*: Invalid argument
- Is there some technical reason why */* does not port to these applications?
- Is there another way of grepping across the current directory and subdirectories?
Many thanks