Hacker News new | past | comments | ask | show | jobs | submit login

I actually do this instead:

    find . | grep "\.txt$"



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$"


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




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: