PowerShell 全稱 Windows PowerShell,在開發(fā)之初砂代,微軟將其命名為代號 Monad吴菠。它首先是個 Shell,它能夠啟動和操縱應(yīng)用程序清寇;其次 PowerShell 也可以將幾個命令組合起來放在文件中執(zhí)行喘漏;同時,PowerShell 還可以充分利用 .Net 和 COM 對象华烟,來與各種系統(tǒng)交互陷遮,完成各種復(fù)雜、自動化的操作垦江。
PowerShell 這個原本只是 Windows 才能使用的組件帽馋,于 2016 年 8 月 18 日開源并且成為跨平臺軟件 ,登陸了 Linux 和 macOS比吭。
如今绽族,你可以在 GitHub 上下載,并體驗 PowerShell 和他的開源態(tài)度衩藤;當(dāng)然你也可以在在開源網(wǎng)站上下載并學(xué)習(xí) PowerShell 資料庫吧慢。微軟的納德拉說:我愛 Linux,你覺得這事兒靠譜嗎赏表?不如先行試用检诗。
在 Linux 系統(tǒng)中安裝 PowerShell
Ubuntu 14.04
curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
curl https://packages.microsoft.com/config/ubuntu/14.04/prod.list | sudo tee /etc/apt/sources.list.d/microsoft.list
sudo apt-get update
sudo apt-get install -y powershell
powershell
Ubuntu 16.04
curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
curl https://packages.microsoft.com/config/ubuntu/16.04/prod.list | sudo tee /etc/apt/sources.list.d/microsoft.list
apt-get update
apt-get install -y powershell
powershell
CentOS 7
sudo curl https://packages.microsoft.com/config/rhel/7/prod.repo > /etc/yum.repos.d/microsoft.repo
sudo yum install -y powershell
Debian Kali
下載 PowerShell-x86_64.AppImage
chmod +x PowerShell-x86_64.AppImage
./PowerShell-x86_64.AppImage
獲取 PowerShell 命令列表
get-command
查看命令幫助 get-help command
比如 get-help Get-Process
get-help Get-Process