I would like to create an alias for the following. Would you please let me know how to set this up?
mate \\`find . -name \\`
use a function instead: mymate() { mate $(find . -name "$1"); }
mymate() { mate $(find . -name "$1"); }