2021-05-12 14:32:11
Ubuntu 16.04上PowerShell Core安裝使用
早在去年八月份PowerShell就開始開源跨平台了,但是一直沒有去嘗試,叫做PowerShell Core。這裡打算簡單介紹一下Ubuntu 16.04上如何安裝和簡單使用,為還不知道PowerShell Core on Ubuntu的同學們提供一點小小的入門幫助,謝謝大家支援~
PowerShell Core是由Microsoft開發的執行在.Net Core上的開源跨平台的任務自動化和設定管理系統。
1. 在Ubuntu 16.04上安裝PowerShell Core
a) 匯入公共儲存庫GPG秘鑰
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) 更新軟體包
sudo apt-get update
d) 安裝PowerShell
sudo apt-get install -y powershell
2. 使用PowerShell Core
a) 啟動PowerShell並檢查PowerShell版本:
b) 新增了一些整合變數,可以用來判斷檢查系統版本:
c) 獲取可用的模組:
d) 利用管道:
e) 使用別名:
f) 使用.NET類庫:
3. 基本命令對照表
4. Linux上的PowerShell Core的注意事項
a) 大小寫敏感
Windows是忽略大小寫的,所以Windows上的PowerShell也是忽略的。然而Linux是大小寫敏感的。因此Linux上的PowerShell一般情況下是忽略大小寫的,但是一些作業系統級別的特殊值是大小寫敏感的(比如一些環境變數的名字):
b) 別名
Windows上的PowerShell有一些Linux型別的別名,比如ls、cat、man、etc等,然而,這些別名在Linux上為了防止衝突已經不存在了,如下例子,ls在Windows PowerShell中也是Get-ChildItem的別名,而在Linux PowerShell Core中查不到:
5. 使用Visual Studio Code進行PowerShell指令碼開發
a) 先安裝Visual Studio:https://code.visualstudio.com/。
b) 新增PowerShell外掛:
c) 現在使用這個編寫PowerShell指令碼就類似於Windows中的ISE了:
d) 更多的使用方法詳見:https://code.visualstudio.com/docs。
本文永久更新連結地址:http://www.linuxidc.com/Linux/2017-06/144836.htm
相關文章