以下の行を含むファイル test.cpp があるとします。
Test(func_class,func1)
{
Test_Func1();
Test_Func2();
Test_Func3();
}
Test(func_class,func3)
{
Test_Func1();
Test_Func9();
Test_Func3();
}
Test(func_class,func2)
{
Test_Func6();
Test_Func7();
Test_Func3();
}
今、挿入後、Test(func_class,func1/2/3) の e:g の中括弧の間に新しい行を挿入したいと思います。
Test(func_class,func1)
{
Test_Func1();
Test_newFunc6();
Test_Func2();
Test_Func3();
}
Test(func_class,func3)
{
Test_Func1();
Test_newFunc6();
Test_Func9();
Test_Func3();
}
Test(func_class,func2)
{
Test_Func6();
Test_newFunc6();
Test_Func7();
Test_Func3();
}
これは、スクリプトを使用して実行できます。誰でもこれを行うためにシェルスクリプトまたはperl pythonを提案できますか?