powershell脚本的格式化

 Auto Formatting PowerShell in Visual Studio Code

1.安装visual studio code

2.安装powershell extension

3.打开脚本文件

4.F1,然后输入format,找到format document的选项

但是这个用起来有点不太理想,傻乎乎的。

 

 

PowerShell Beautifier

通过导入powershell module进行操作,module提供了函数

  1. Download the PowerShell Beautifier utility. Clone it, zip it or get it from the PowerShell Gallery:
Install-Module -Name PowerShell-Beautifier
  1. Import the module. This takes a few seconds the first time but is fast thereafter.
Import-Module PowerShell-Beautifier.psd1
  1. Confirm it is loaded correctly:
Get-Help Edit-DTWBeautifyScript

很神奇的是,这里的import-module不需要每次都导入。直接集成在了内部

http://www.brianbunke.com/blog/2017/01/09/publishing-scripts/   参考这个文章看了一下,原来是把module放到了以下目录,在启动的时候自动加载

 C:\Users\clu\Documents\PowerShell\Modules

 

查看已经安装的module

Get-InstalledModule

Version Name Repository Description
------- ---- ---------- -----------
1.2.5 PowerShell-Beautifier PSGallery PowerShell beautifier / code cleaner / p…0.0.1 WindowsCompatibility PSGallery This module Provides compatibility utili…

 

作者:Chuck Lu    GitHub    
posted @   ChuckLu  阅读(1953)  评论(0编辑  收藏  举报
编辑推荐:
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
历史上的今天:
2018-03-14 pass an instance of class to TestCase as parameter
2018-03-14 How to Integrate .NET Projects with Jenkins
2016-03-14 Knowing When to Use Override and New Keywords (C# Programming Guide)
2016-03-14 Versioning with the Override and New Keywords (C# Programming Guide)
2016-03-14 Polymorphism (C# Programming Guide)
2015-03-14 2-Medium下的MultipleCommandAssembly
2015-03-14 如何获取supersocket的源代码
点击右上角即可分享
微信分享提示