echo <Search> | find / -name <Search> I am trying to achieve something like this. To get the same result, I am storing my search on a variable and then using find on it but obviously I am not satisfied with it. It would be awesome if I could pipe that right into find.
SEARCH='*.txt' find / -name $SEARCH