Ariën Huisken wrote:
> Sometimes my filenames are in caps, is there a way of selecting both 
> *.crw and *.CRW

*.{crw,CRW}

as for others, you could simply test all files, and if they aren't
listed by lsof;

egrep -qi 'crw$' $foo
if [ $? -gt 0 ]; then
  rm -f $foo;
  continue;
fi

Obviously, don't simply copy that.. I haven't tested it.. try it out
with echo and tweak until it works :)

-- 
Cheers,
Morten
:wq
_______________________________________________
tsl-discuss mailing list
[email protected]
http://lists.trustix.org/mailman/listinfo/tsl-discuss

Reply via email to