Hacker News new | ask | show | jobs
by rejap 3765 days ago
once you mentioned it, the original commands which are compared are not equivalent. Dir does case insensitive search, find is case sensitive. The equivalent would be:

  find . | grep -i "\.txt$"
1 comments

You can do a case insensitive search with -iname: find . -iname "*.txt"