「PowerShell」コマンドライン引数を取得する方法

2020年12月21日

使用例

echo ("Type : " + $args.GetType().Name)
echo ("Length : " + $args.Length)
echo ('$args : ' + $args)

実行結果
> ./test.ps1 username age pwd
Type : Object[]
Length : 3
$args : username age pwd

PowerShell

Posted by arkgame