Think Twice
IT技術メモ | プログラミング逆引きのメモ
Created: 2022-03-17 / Updated: 2022-03-17

スクリプトの引数


目次


PowerShellのスクリプトの引数

通常の方法

実行結果
Copy
PS C:\temp> .\test1.ps1 aaa 100
aaa
100

Param()

実行結果
Copy
PS C:\temp> .\test2.ps1 aaa 100
aaa
100
PS C:\temp> .\test2.ps1 -Arg1 aaa -Arg2 100
aaa
100
PS C:\temp> .\test2.ps1 -Arg2 100 -Arg1 aaa
aaa
100

スイッチ

実行結果
Copy
PS C:\temp> .\test3.ps1
False
False
False
PS C:\temp> .\test3.ps1 -stg
False
True
False
PS C:\temp> .\test3.ps1 -dev -stg -prd
True
True
True

参考サイト


参考

参考サイト

関連メモ