Blame

99d80b Qwas 2024-11-30 09:31:32 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
```
f86f51 Qwas 2024-11-30 09:33:30 16
17
```powershell
18
Set-Alias k kubectl
19
```