in reply to Re: Using $"
in thread Using $"

I have tried to use "+>>" and ">>" to no avail.

Replies are listed 'Best First'.
Re^3: Using $"
by Lotus1 (Vicar) on Dec 22, 2014 at 20:10 UTC

    The second time you open the file, it needs to be opened for output.

    open(INFO1, ">", $file) or die "Couldn't open: $!\n";

    It looks like you are using $" correctly so your question should probably be something about reading and writing to files. There are many tutorials on this topic for Perl.