2017-08-02 6 views
0

コマンドラインコマンドに渡す文字列に改行を追加するときに問題があります。コマンドラインオプションにLineFeedを追加する(Windows 7)

sometool --modifyfield "Description"="How to add a \n line feed?" 
sometool --modifyfield "Description"=$"How to add a \n line feed?" 
... and othercombinations using % and^

...しかし、私はいつも私の説明]フィールドに「=」behin正確にテキストを参照してください。私はすでに成功せずにしようとした何

sometool --modifyfield "Description"="How to add a line feed?" 

:構文は次のようです。

ここに改行を追加することはできますか?

答えて

0

PowerShellはWindows 7にインストールできます。sometoolは実行可能な.exeですか?

powershell -NoProfile -Command "& sometool --modifyfield "Description"="How to add a `n line feed?" 
関連する問題