Skip to main content

All Questions

Tagged with
2 votes
2 answers
297 views

find - how do i make an alias to do something like (find . -iname '*$1*')?

I have a findn function: findn () { find . -iname "*$1*" } Using this function has one downside that I cannot use -print0 | xargs -0 command (I am using mac) following findn filename to extend ...
Teddy C's user avatar
  • 457