sedコマンドでURL変更する
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
#author("2020-04-13T16:48:10+00:00","","")
[[hidekiwiki]]
#html{{
<meta name="description" content="https://fukumoto.tokyo/...
<meta name="keywords" content="sedコマンド,URL,置換,一括"...
<link rel="canonical" href="https://fukumoto.tokyo/wiki/"...
<br>
<a href="httpss://it.blogmura.com/linux/"><img src="https...
<!-- admax -->
<script src="httpss://adm.shinobi.jp/s/1a0429ab1f292195e9...
<!-- admax -->
</html>
}}
[[sedコマンドでURL変更する]]
**特定のファイルのみURLの文字列を一括置換するsedコマンド ...
sed -i -e "s|http://変更前URL|https://変更後URL|g" 変更...
**カレントディレクトリ直下全てのファイルのURL文字列を一括...
find . -type f -print0 | xargs -0 sed -i -e "s|http://変...
終了行:
#author("2020-04-13T16:48:10+00:00","","")
[[hidekiwiki]]
#html{{
<meta name="description" content="https://fukumoto.tokyo/...
<meta name="keywords" content="sedコマンド,URL,置換,一括"...
<link rel="canonical" href="https://fukumoto.tokyo/wiki/"...
<br>
<a href="httpss://it.blogmura.com/linux/"><img src="https...
<!-- admax -->
<script src="httpss://adm.shinobi.jp/s/1a0429ab1f292195e9...
<!-- admax -->
</html>
}}
[[sedコマンドでURL変更する]]
**特定のファイルのみURLの文字列を一括置換するsedコマンド ...
sed -i -e "s|http://変更前URL|https://変更後URL|g" 変更...
**カレントディレクトリ直下全てのファイルのURL文字列を一括...
find . -type f -print0 | xargs -0 sed -i -e "s|http://変...
ページ名: