Yanor.net/
Wiki
Blog
GitHub
Sandbox
開始行:
* 標準入力をファイルと標準出力に同時に出力 Tee-Object [#w...
*** ファイルに出力 [#a9d1f78a]
dir | tee "C:\tmp\result.txt" | ft -a
*** 変数に出力 [#l46cd6e8]
$result = $null
dir | tee -Variable result | ft -a
- 上の場合、$resultはSystem.IO.FileInfoオブジェクト。テキ...
** 参考 [#h133a1dd]
https://technet.microsoft.com/en-us/library/hh849937.aspx
終了行:
* 標準入力をファイルと標準出力に同時に出力 Tee-Object [#w...
*** ファイルに出力 [#a9d1f78a]
dir | tee "C:\tmp\result.txt" | ft -a
*** 変数に出力 [#l46cd6e8]
$result = $null
dir | tee -Variable result | ft -a
- 上の場合、$resultはSystem.IO.FileInfoオブジェクト。テキ...
** 参考 [#h133a1dd]
https://technet.microsoft.com/en-us/library/hh849937.aspx
ページ名: