PowerShell
2022/8/24 5:22:52
本文主要是介绍PowerShell,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
前提:先通过微软商店安装 Windows Terminal 和 PowerShell
配置文件
-
修改配置文件
配置文件修改如下(由于几乎只有 PowerShell 与 Windows 完美契合,所以其他终端的配置都删掉了):
-
安装插件等(下载如果很慢的话则需要魔法)
打开安装的
PowerShell
,执行如下命令:# 安装 Oh My Posh(类似 Linux 和 MacOS 中的 Oh My Zsh) Install-Module oh-my-posh -Scope CurrentUser # 安装 posh-git 包,使得 git 更好用 Install-Module posh-git -Scope CurrentUser # 安装 PSReadLine 工具 Install-Module -Name PSReadLine -AllowPrerelease -Scope CurrentUser -Force -SkipPublisherCheck
-
启动激活
Oh My Posh
code $PROFILE
新建文件,添加如下配置信息:Import-Module posh-git Import-Module oh-my-posh Set-PoshPrompt -Theme robbyrussel
我这里设置的主题为
robbyrussel
。若要更改主题,到官网
https://ohmyposh.dev/docs/themes
或者执行Get-PoshThemes
查看主题效果,更换为自己喜欢的相应主题的名字即可。 -
防止字体乱码
官网
https://www.nerdfonts.com/font-downloads
安装一种Nerd
字体,然后将默认的Windows Terminal
的字体修改为该字体样式。 -
开启智能预测
Predictive IntelliSense
默认关闭,需要手动开启。code $PROFILE
配置如下:# 开启预测,并设置预测文本来源为历史记录 Set-PSReadLineOption -PredictionSource History # 设置 Tab 为菜单补全和 Intellisense Set-PSReadLineKeyHandler -Key Tab -Function MenuComplete
PS 命令
# 查找命令,类似 Linux Shell 中的 find /root --name fileName get-ChildItem D:\ -Recurse -Include cs.png # 可以简写成下: gci d:/ -r -i cs.png # 其中 -Include 和 -i 可以改写成 -Filter 和 -fi,效果是一样的
PS 中的 Length 字段的单位为 B,和 Linux Shell 相同
这篇关于PowerShell的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2022-09-14SharePoint 2019 用 PowerShell将启用发布功能站点网站集另存为模板
- 2022-08-30PowerShell教程 - 程序性能和BUG分析工具
- 2022-08-30PowerShell教程 - 模块管理(Modules Management)
- 2022-08-29PowerShell教程 - Web requests(Web请求)
- 2022-08-26PowerShell教程 - 日期时间管理(Date & Time Management)
- 2022-08-25PowerShell教程 - 磁盘与硬件管理(Disk & Hardware Management)
- 2022-08-25PowerShell教程 - 系统事件管理(System Event Management)
- 2022-08-25PowerShell教程 - 文件系统管理(File System Management)
- 2022-08-24PowerShell教程 - 网络管理(Network Management)
- 2022-08-23PowerShell教程 - 用户和组管理(User && Group)