in reply to Is there a reason to use "join" instead of just using the period?
Just compare the three ways of doing it (from your code):
$hotfix=join "", "$app", "_", "$mod", "_", "$bld", "_", "$hf", ".zip";
$hotfix = "${app}_${mod}_${bld}_${hf}.zip";
I prefer the last way, myself -- it's cleaner and the least noisy from a visual point of view.$hotfix = join("_", $app, $mod, $bld, $hf) . ".zip";
|
|---|