早在去年八月份PowerShell就開始開源跨平臺了,可是一直沒有去嘗試,叫作PowerShell Core。html
這裏打算簡單介紹一下如何安裝和簡單使用,爲還不知道PowerShell Core on Ubuntu的同窗們提供一點小小的入門幫助,謝謝你們支持~shell
PowerShell Core是由Microsoft開發的運行在.Net Core上的開源跨平臺的任務自動化和配置管理系統。ubuntu
a) 導入公共存儲庫GPG祕鑰curl
curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
b) 註冊微軟Ubuntu存儲庫學習
curl https://packages.microsoft.com/config/ubuntu/16.04/prod.list | sudo tee /etc/apt/sources.list.d/microsoft.list
c) 更新軟件包url
sudo apt-get update
d) 安裝PowerShellspa
sudo apt-get install -y powershell
a) 啓動PowerShell並檢查PowerShell版本: 操作系統
b) 添加了一些集成變量,能夠用來判斷檢查系統版本:插件
c) 獲取可用的模塊:3d
d) 利用管道:
e) 使用別名:
f) 使用.NET類庫:
a) 大小寫敏感
Windows是忽略大小寫的,因此Windows上的PowerShell也是忽略的。然而Linux是大小寫敏感的。所以Linux上的PowerShell通常狀況下是忽略大小寫的,可是一些操做系統級別的特殊值是大小寫敏感的(好比一些環境變量的名字):
b) 別名
Windows上的PowerShell有一些Linux類型的別名,好比ls、cat、man、etc等,然而,這些別名在Linux上爲了防止衝突已經不存在了,以下例子,ls在Windows PowerShell中也是Get-ChildItem的別名,而在Linux PowerShell Core中查不到:
a) 先安裝Visual Studio:https://code.visualstudio.com/。
b) 添加PowerShell插件:
c) 如今使用這個編寫PowerShell腳本就相似於Windows中的ISE了:
d) 更多的使用方法詳見:https://code.visualstudio.com/docs。
[原創文章,轉載請註明出處,僅供學習研究之用,若有錯誤請留言,如喜歡請推薦,謝謝支持]
[原文:http://www.cnblogs.com/lavender000/p/7011432.html,來自永遠薰薰]