Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
$3.txt私のメールアドレス列を表す3列目です。"$3"電子メール アドレスではなく、次のステートメントが出力されるのはなぜですか?:
$3
.txt
"$3"
print " <td><a href=mailto:>$3</a></td>"
私は立ち往生しています。
リテラル文字列を出力しているため、必要なものは次のとおりです。
print " <td><a href=mailto:>"$3"</a></td>"