Ou até mesmo
sed -i '/InvertX/s/"on"/"off"/' file_name
Eu gostaria de modificar o arquivo de configuração, como mostrado abaixo. O que posso fazer como um script de shell?
Section "InputClass"
Identifier "calibration"
MatchProduct "Touch"
Option "Calibration" "166 3939 186 3814"
Option "SwapAxes" "1"
Option "InvertX" "on"
Option "InvertY" "on"
EndSection
Section "InputClass"
Identifier "calibration"
MatchProduct "Touch"
Option "Calibration" "166 3939 186 3814"
Option "SwapAxes" "1"
Option "InvertX" "off"
Option "InvertY" "on"
EndSection
Tente isto:
sed -i 's:"InvertX" "on":"InvertX" "off":g' file_name