LoginSignup
0
1

More than 5 years have passed since last update.

link > PowerShell > 行連結文字 > `

Last updated at Posted at 2018-01-12
動作環境
Windows 10 Pro (64bit) Fall Creators Update適用済

https://stackoverflow.com/questions/113542/how-can-i-uninstall-an-application-using-powershell
で見た以下のコード。

$app = Get-WmiObject -Class Win32_Product `
                     -Filter "Name = 'Software Name'"

1行目の「`」は行の継続性を表すものなのだろう。

PowerShell基礎文法最速マスター @ PowerShell Scripting Weblog by 牟田口大介さん

10.知っておいたほうがよい文法
1行にすると長いコードを複数行に書くには行継続文字`を用いる。VBの_。

関連

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1