2019/05/30 計算結果の表示と同時に変数に放り込む

皆様おはようございます、

#昨日の3分PowerShell(備忘録)

 

#計算結果の表示と同時に変数に放り込む

PS > "abc" + "def" | tee -Variable word

abcdef

 

PS > $word

abcdef

 

 

便利そうですがあまり使いこなせていません

ではまた;