codingBashでファイルを読み込み、指定した文字列を置換するスクリプト Bashでファイルを読み込み、指定した文字列を置換するスクリプトはこちら。 #!/bin/bash # 置換対象のファイル FILE="input.txt" OLD_STRING="old_string" NEW_STRING="... 2025.03.12coding