file.txt
file format = cust:hdb
file data = ted Ref:4rm
read -p "Cust:" cust
ユーザーキー入力: ted ref
grep -i -q "$cust" "file"
大文字と小文字を区別せずに入力を読み取ることができるシステム
read -p "NewCust:" cust2
ユーザーキー入力: Ted Ref
awk -F : -v OFS=: -v cust="$cust" -v cust="$cust2" -v hdb="$hdb" '$1==cust && $2==hdb {$1=cust2;}1 ' ファイル
awk がケースを無視してファイルを更新できるようにするにはどうすればよいですか?