URL表記を sed で加工したい
http:// あるいは、 https:// を https?:// に
example.php は、 example\.php のように、 . が何か一文字ではなく . そのものを現すように
http://example.com/path/to/file を http://example.com\/path\/to\/file に
sed -e 's/https\{0,1\}:/https?:/' -e 's/\./\\./g' -e 's:/:\\/:3g'
で、いいみたい。
- URL表記を sed で加工したい の続きを見る
- コメントを投稿するにはログインまたは登録をしてください
- 閲覧数 13