Yanor.net/
Wiki
Blog
GitHub
Sandbox
開始行:
* エイリアス - Get-Alias他 [#w080307a]
** エイリアス元のコマンドレットを探す [#s3424b1d]
Get-Alias dir
> CommandType Name ...
> ----------- ---- ...
> Alias dir -> Get-ChildItem ...
** あるコマンドレットのエイリアス名を探す [#le228109]
Get-Alias -Definition Get-ChildItem*
> Get-Alias -Name Get-ChildItem*
> Get-Alias -Name Get-ChildItem*
> Get-Alias -Definition Get-ChildItem*
** エイリアスを削除する [#m67c945a]
Remove-Item alias:ls
** エイリアスにオプション付きのコマンドレットを指定する [...
Remove-Item alias:ls
function ls() {
gci $args | fw -column 4
}
- PowerShellのエイリアスはコマンドレットにオプションを指...
- エイリアスはファンクションに優先するので、すでにエイリ...
** 参考 [#t8bb3c17]
- Get-Alias http://technet.microsoft.com/ja-jp/library/e...
- Set-Alias http://technet.microsoft.com/ja-jp/library/ee...
- http://huddledmasses.org/powershell-power-user-tips-bas...
終了行:
* エイリアス - Get-Alias他 [#w080307a]
** エイリアス元のコマンドレットを探す [#s3424b1d]
Get-Alias dir
> CommandType Name ...
> ----------- ---- ...
> Alias dir -> Get-ChildItem ...
** あるコマンドレットのエイリアス名を探す [#le228109]
Get-Alias -Definition Get-ChildItem*
> Get-Alias -Name Get-ChildItem*
> Get-Alias -Name Get-ChildItem*
> Get-Alias -Definition Get-ChildItem*
** エイリアスを削除する [#m67c945a]
Remove-Item alias:ls
** エイリアスにオプション付きのコマンドレットを指定する [...
Remove-Item alias:ls
function ls() {
gci $args | fw -column 4
}
- PowerShellのエイリアスはコマンドレットにオプションを指...
- エイリアスはファンクションに優先するので、すでにエイリ...
** 参考 [#t8bb3c17]
- Get-Alias http://technet.microsoft.com/ja-jp/library/e...
- Set-Alias http://technet.microsoft.com/ja-jp/library/ee...
- http://huddledmasses.org/powershell-power-user-tips-bas...
ページ名: