$ perl -le'$typ="abc"; $dat="def"; $typ::="123"; print "$typ::$dat"' 123def #### $ perl -le'$typ="abc"; $dat="def"; $typ::="123"; print "${typ}::$dat"' abc::def #### $ perl -le'$typ="abc"; $dat="def"; $typ::="123"; print "$typ\::$dat"' abc::def #### $ perl -le'$typ="abc"; $dat="def"; $typ::="123"; print $typ."::".$dat' abc::def