C ++コードで3行の入力を置き換えるスクリプトを書いています。入力を変更したいC ++コードスニペットは次のとおりです。
char outputFileName_ForBlueEdge[50] = "BlueEdge_SetA_PeriodRange1.dat"; //File with model parameters on the blue edge
char outputFileName_ForPositiveGrowthModels[50] = "PostiveGrowth_SetA_PeriodRange1.dat"; //File with model parameters that have positve growth rates
char log_directory_prefix[30] = "LOGS_A/LOGS_A"; //Prefix to log_directory, suffix is model number. This is where LINA file should be
以下は、Bashスクリプトの再現可能な最小バージョンです。
dir=$PWD
cplusplus_plotter="$dir"/BlueEdge_Plotter_V7.cpp
#Set B
sed -i \
-e "s/^\([[:blank:]]*char outputFileName_ForBlueEdge[50]\).*/\1 = "BlueEdge_SetB_PeriodRange1.dat"/i" \
-e "s/^\([[:blank:]]*char outputFileName_ForPositiveGrowthModels[50]\).*/\1 = "PostiveGrowth_SetB_PeriodRange1.dat"/i" \
-e "s/^\([[:blank:]]*log_directory_prefix[30]\).*/\1 = "LOGS_B/LOGS_B"/i" \
"$cplusplus_plotter"
ただし、C ++ファイルは変更されず、引き続きエラーが発生します。
sed: -e expression #3, char 59: unknown option to `s'
答え1
このように:
sed -i \
-e 's/^\([[:blank:]]*char outputFileName_ForBlueEdge\[50\]\).*/\1 = "BlueEdge_SetB_PeriodRange1.dat"/i' \
-e 's/^\([[:blank:]]*char outputFileName_ForPositiveGrowthModels\[50\]\).*/\1 = "PostiveGrowth_SetB_PeriodRange1.dat"/i' \
-e 's!^\([[:blank:]]*log_directory_prefix\[30\]\).*!\1 = "LOGS_B/LOGS_B"!i' \
"$cplusplus_plotter"
必要な区切り文字を選択できます(ASCIIテーブルから)。
!
4があるので、最後のsedコマンドを選択しました/
。