in reply to Remove '$' from system names
HTH, andye
update:
Looking at your code, it looks like you're using map in a way that's a little unusual. Instead of doing this:
map {print "$_\n"} @List; map {print FILE "$_"."\n"} @List;
you might want to consider using foreach instead of map:
foreach (@List) { chop; print "$_ \n"; print FILE "$_ \n"; }
best, andye
|
|---|