📊

conf ファイルを有効なものだけ抽出して比較する

2020/09/29に公開

published_at: 2018-11-20 12:38


(PostgreSQL の) conf ファイルを有効なものだけ抽出して比較する

  • grep -v -e '^\s*#' -e '^\s*$' db-2.conf | sort > db-2.conf_sort

  • grep -v -e '^\s*#' -e '^\s*$' db-1.conf | sort > db-1.conf_sort

  • diff -u db-2.conf_sort db-1.conf_sort > diff_confs_sort.txt

refs

grepでコメント行および空白行を削除する

Discussion