是什么 ? | : | a powerful cross-platform command-line Shell |
开发语言 | : | C# |
开发公司 | : | Microsoft |
官方主页 | : | https://microsoft.com/PowerShell |
源码仓库 | : | https://github.com/PowerShell/PowerShell |
操作系统 | 包管理器 | 仓库 | 安装命令 |
---|---|---|---|
Windows | Chocolatey | official | choco install -y powershell.portable |
macOS | HomeBrew | official | brew install powershell |
yay | AUR | yay -Syyu --noconfirm |
step1、安装依赖
所有时 | Terminal + Shell + GNU CoreUtils |
下载时 | cURL |
解压时 | tar + gzip |
运行时 | .NETCoreRuntime |
step2、使用install命令创建安装目录
sudo install -d -o $(whoami) /usr/local/opt/powershell
step3、进入/usr/local/opt/powershell
目录
cd /usr/local/opt/powershell
step4、使用curl命令下载编译好的PowerShell
二进制压缩包 ()
curl -LO https://github.com/PowerShell/PowerShell/releases/download/v6.2.3/powershell-6.2.3-linux-x64.tar.gz
step4、使用tar解压PowerShell
压缩包
tar vxf powershell-6.2.3-linux-x64.tar.gz
step5、将/usr/local/opt/powershell/pwsh
软链接到/usr/local/bin/pwsh
sudo ln -sf /usr/local/opt/powershell/pwsh /usr/local/bin/pwsh
直接运行pwsh
命令即可进入PowerShell
,效果如下:
系统级 | $PSHOME/profile.ps1 |
用户级 | C:\Users\USERNAME\Documents\WindowsPowerShell\Microsoft.PowerShell_profile.ps1 |
~/.coinfig/powershell/MicroSoft.PowerShell_profile.ps1 |
用户级
配置文件的路径存放在$profile
变量中,该路径默认是不存在的,需要用户自己创建并添加内容。
推荐使用oh-my-posh进行一些配置管理。