Blame
|
1 | # alias |
||||||
| 2 | ||||||||
| 3 | Powershell 中 |
|||||||
| 4 | ||||||||
| 5 | ```powershell |
|||||||
| 6 | Get-Alias |
|||||||
| 7 | ``` |
|||||||
| 8 | ||||||||
| 9 | ```powershell |
|||||||
| 10 | Set-Alias pn pnpm |
|||||||
| 11 | ``` |
|||||||
| 12 | ||||||||
| 13 | ```powershell |
|||||||
| 14 | Set-Alias -name pn -value pnpm |
|||||||
| 15 | ``` |
|||||||
|
16 | |||||||
| 17 | ```powershell |
|||||||
| 18 | Set-Alias k kubectl |
|||||||
| 19 | ``` |
|||||||