これは私がやろうとしていることです:
(
@echo This is some code that is
@echo Important to echo exactly as-is
@echo Even if I use parenthesis
@echo for something (like this)
)|clip
それで、それをクリップボードにコピーしました。私は次のことを試しました:
(
@echo This is some code that is
@echo Important to echo exactly as-is
@echo Even if I use parenthesis
@echo for something ^(like this^)
)|clip
しかし、エラーが発生するため、これは WANTED 括弧にも影響するようです。これをテストするために、私は単純に次のことを行いました。
(
@echo This is some code that is
@echo Important to echo exactly as-is
@echo Even if I use parenthesis
@echo for something ^(like this^)
FFF
)|clip
おい!これはほとんど機能します。テキストは「this」の「s」までコピーされます。最後の括弧、または明らかに F はコピーしません。何か案は?