バッチファイルコマンド内にコメントを付けることが可能かどうかは疑問です。具体的には、私は次のような長いSED
コマンドがあります。複数行コマンドのバッチコメント
@SED -r -e "s/.../.../"^
-e "s/.../.../"^
-e "s/.../.../"^
fileName >outFileName
を私は、次の例に示すように、「-e」オプションのそれぞれにコメントを追加したいと思います:
:: Option #1: At the end of the line
@SED -r -e "s/.../.../"^ // First comment
-e "s/.../.../"^ // Second comment
-e "s/.../.../"^ // Third comment
fileName >outFileName
:: Option #2: Between lines
@SED -r
@REM First comment
-e "s/.../.../"^
@REM Second comment
-e "s/.../.../"^
@REM Third comment
-e "s/.../.../"^
fileName >outFileName
これを達成する方法はありますか?
SEDハンドルインラインコメントの* NIXのバージョンはできますか? – SomethingDark