On Wed Feb 16 09:59:31 EST 2011, [email protected] wrote: > Hi, > In rc > *hola* > matches any file that contains the word 'hola'. Is there any way to > match all the files that don't contain 'hola' in its name? with awk > and grep it's easy, but I can't figure out with rc.
match=()
for(i in *)
! ~ $i *hola && match = ($match $i)
- erik
