📎
ファイル内部の文字列一括変換するシェルスクリプト
/etc/yum.repos.d/*.repo 内一括変換
こちらの記事ですべての*.repoファイルの中身を一括で変換するためのシェルスクリプトを
記載しておきます。
1.ファイルを作成
$vi convertAllAtOnce.sh
2.内部を編集
#!/bin/bash
# リポジトリファイルのあるディレクトリを指す変数
REPO_DIR="/etc/yum.repos.d/"
# すべての*.repoファイルに対して操作を行う
for repo_file in ${REPO_DIR}*.repo; do
echo "Processing ${repo_file}"
# Step1. mirrorlistからはじまる部分をコメントアウト
sed -i 's/^mirrorlist/#mirrorlist/g' "$repo_file"
# Step2.URL部分の変換
sed -i 's/^#baseurl/baseurl/g' "$repo_file"
sed -i 's|mirror.centos.org|vault.centos.org|g' "$repo_file"
done
echo "All repo files updated!"
これをもとに、他の用途にも応用が利くと思います!
Discussion