배치 파일 명령 내에 주석을 포함 할 수 있는지 궁금합니다. 특히, 내가 좋아하는 긴 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
이것을 달성 할 방법이 있습니까?
수 나오지 핸들 인라인 주석의 * NIX 버전? – SomethingDark