I'm having some trouble with concatenation on strings. I'm tring to create a path that will become a .txt file, but it always ends up as just ".txt" with no name. It ends up in the right fikder though.
This is what I'm doing:
open TEXT, ">/home/admin/www/build/logs/baseline".$ID."/".$platformName.".txt" or die $!;
So I want to create the file. "/home/admin/www/build/logs/baseline45/linux.txt"
Where am I messing this up?
Thanks!

$ID = 45; $platformName = "linux"; print ">/home/admin/www/build/logs/baseline" . $ID . "/" . $platformName . ".txt", "\n";prints>/home/admin/www/build/logs/baseline45/linux.txt. So "where am I messing this up?" is "Somewhere else." – DavidO Oct 19 '12 at 6:47open my $fh, '>', "/home/admin/www/build/logs/baseline45/linux.txt" or die $!;. – squiguy Oct 19 '12 at 6:49