#### # Recursively find filenames using find command from the current working dir. function f () { find . -iname "*$1*" } ### # Why is this allowed as well? function f { find . -iname "*$1*" }