- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- シェルスクリプト/文法/引用符のエスケープ へ行く。
- 1 (2021-12-04 (土) 11:26:43)
引用符のエスケープ
シングルクォートのエスケープ
問題
$ perl -e "print 'hello world'" hello world
- 上のperlコマンドの引数になっている"print 'hello world'"のうち、ダブルクォートをシングルクォートにしたい
$ perl -e "print 'hello world'" hello world