「PowerShell」コマンドライン引数を取得する方法
使用例
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
Coding Changes the World
使用例
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