PowerShell

2022/8/24 5:22:52

本文主要是介绍PowerShell,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

前提:先通过微软商店安装 Windows Terminal 和 PowerShell

配置文件

  1. 修改配置文件

    image-20220123230658720

    配置文件修改如下(由于几乎只有 PowerShell 与 Windows 完美契合,所以其他终端的配置都删掉了):

    image-20220123233135960

  2. 安装插件等(下载如果很慢的话则需要魔法)

    打开安装的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
    
  3. 启动激活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查看主题效果,更换为自己喜欢的相应主题的名字即可。

  4. 防止字体乱码

    官网https://www.nerdfonts.com/font-downloads安装一种Nerd字体,然后将默认的Windows Terminal的字体修改为该字体样式。

  5. 开启智能预测

    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的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程