hi
i have a environment file i exec whenever i login that contains all my aliases.
i would like to create an alias or function that helps me use the find command since i use it so often:
fh()
{
it=$1
find . -name $it -print
}
i get : find: missing conjunction
when i run it. any ideas?
thanks!
john
i have a environment file i exec whenever i login that contains all my aliases.
i would like to create an alias or function that helps me use the find command since i use it so often:
fh()
{
it=$1
find . -name $it -print
}
i get : find: missing conjunction
when i run it. any ideas?
thanks!
john