Escaping * char in cshell alias
i want to write a C Shell Alias which can find files starting with a pattern
ie equivalent of find . -name "pattern*"
myfind pattern should do above cmd where myfind is the alias name. How do i escape the * in csh alias ?
alias myfind 'find . -name !**'