in reply to What is the problem with this script as no output
maybe you should try:undef %hash,@index,@a2;
which will make perl forget about those variables, orundef %hash; undef @index; undef @a2;
which will make perl empty the contents of those variables%hash=(); @index=(); @a2=();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Why output is appending in each file??
by Anonymous Monk on Jun 03, 2005 at 09:11 UTC |