PowerShellでコードを書いている時にこの部分は1行にまとめたい、また逆に1行が長くなったので分割したい時があります。
PowerShellでどのように書けば良いのか方法を記載しておきます。
複数行を1行にまとめる場合
セミコロン「;」を使うことで行をまとめることができます。
Write-Host "10秒後に処理を開始します。";Start-Sleep -s 10
1行を複数行に分割する場合
バッククォート「‘」を使うことで分割できます。
Get-ChildItem -Path C:\Windows `
-Filter *.log
ディレクトリ: C:\Windows
Mode LastWriteTime Length Name
---- ------------- ------ ----
-a---- 2019/12/14 16:42 39162 comsetup.log
-a---- 2019/06/02 6:00 3400 DDACLSys.log
-a---- 2017/11/25 23:44 1129 DirectX.log
-a---- 2018/01/11 1:10 30796 DPINST.LOG
-a---- 2019/12/14 16:21 1625 DtcInstall.log
-a---- 2020/07/04 8:48 2732194 PFRO.log
-a---- 2019/12/14 16:17 0 setuperr.log
-a---- 2020/03/20 13:41 24924 TmComm.log
-a---- 2020/07/19 7:39 276 WindowsUpdate.log
コメント