博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在 Linux 上运行 PowerShell
阅读量:6408 次
发布时间:2019-06-23

本文共 1252 字,大约阅读时间需要 4 分钟。

PowerShell 全称 Windows PowerShell,在开发之初,微软将其命名为代号 Monad。它首先是个 Shell,它能够启动和操纵应用程序;其次 PowerShell 也可以将几个命令组合起来放在文件中执行;同时,PowerShell 还可以充分利用 .Net 和 COM 对象,来与各种系统交互,完成各种复杂、自动化的操作。

PowerShell 这个原本只是 Windows 才能使用的组件,于 2016 年 8 月 18 日开源并且成为跨平台软件 ,登陆了 Linux 和 macOS。

如今,你可以在 上下载,并体验 PowerShell 和他的开源态度;当然你也可以在在开源网站上下载并学习 PowerShell 资料库。微软的纳德拉说:我爱 Linux,你觉得这事儿靠谱吗?不如先行试用。

在 Linux 系统中安装 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.listsudo  apt-get updatesudo  apt-get install -y powershellpowershell

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.listapt-get updateapt-get install -y powershellpowershell

CentOS 7

sudo curl https://packages.microsoft.com/config/rhel/7/prod.repo > /etc/yum.repos.d/microsoft.reposudo 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

转载地址:http://jbhea.baihongyu.com/

你可能感兴趣的文章
双绞线的线序568A与568B
查看>>
我的友情链接
查看>>
详细了解下有关ASP空间的知识
查看>>
阿里巴巴前架构师 360 度无死角剖析微服务
查看>>
开源OSS.Social微信项目进阶介绍
查看>>
linux修改中文显示
查看>>
简单描述linux启动的过程
查看>>
iphone5 ***设置
查看>>
我的友情链接
查看>>
从另一个表中添加数据
查看>>
SUSE_NFS、Samba服务搭建
查看>>
如何修改MySQL字符集
查看>>
Microsoft Windows
查看>>
OC API库常见之函数(二)
查看>>
都是trigger惹的祸
查看>>
design a text edit
查看>>
CodeForces 454C Little Pony and Expected Maximum
查看>>
华为交换机vlan间路由器子接口的配置
查看>>
SAN 交换机license激活步骤(guolhb@DC)
查看>>
深入浅出Docker(四):Docker的集成测试部署之道
查看>>