#SHELL

wirte function in powershell

https://github.com/dahlbyk/posh-git/blob/master/src/Utils.ps1#L102https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_funct...
代码星球 ·2021-02-08

string operation in powershell

https://blogs.technet.microsoft.com/heyscriptingguy/2014/07/15/keep-your-hands-clean-use-powershell-to-glue-strings-together/ powershellconcatstringBecause...

Powershell 常见问题

WARNING:Thenamesofsomeimportedcommandsfromthemodule'todo'includeunapprovedverbsthatmightmakethemlessdiscoverable.Tofindthecommandswithunapprovedverbs,runtheImpo...
代码星球 ·2021-02-08

get the default proxy by Powershell

https://stackoverflow.com/questions/571429/powershell-web-requests-and-proxies$proxyAddr=(get-itemproperty'HKCU:SoftwareMicrosoftWindowsCurrentVersionInternetSe...
代码星球 ·2021-02-08

通过powershell操作eventlog

~Desktop>(Get-CommandWrite-EventLog).ParametersKeyValue--------WarningActionSystem.Management.Automation.ParameterMetadataRawDataSystem.Management.Automation...

powershell如何查看以及设置环境变量

https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_environment_variables?view=powershell-6Get-ChildItemenv:NameValue------...

powershell的stable和preview版本

在看https://github.com/PowerShell/PowerShell/releases的时候发现,已经发布了6.2.0的preview版本的情况下,还会继续发布6.1.3。 在ReadMe中,stable是6.1.3的版本。preview是6.2.0的版本。 ...

powershell脚本的格式化

1.安装visualstudiocode2.安装powershellextension3.打开脚本文件4.F1,然后输入format,找到formatdocument的选项但是这个用起来有点不太理想,傻乎乎的。  通过导入powershellmodule进行操作,module提供了函数Downloa...
代码星球 ·2021-02-08

PowerShell Gallery

https://docs.microsoft.com/en-us/powershell/gallery/getting-startedhttps://www.powershellgallery.com/packages?q=PowerShell-BeautifierNameInstallationPolicySourc...
代码星球 ·2021-02-08

通过cmd调用Powershell脚本

一共需要3个文件,把这3个文件放在一个路径下UTF8NoBOM.bat  这个文件是为了调用ps1pwsh-file"%cd%UTF8NoBOM.ps1"  UTF8NoBOM.ps1  这个文件是为了导入自定义的module,使用自定义module中定义的P...

shell script operate the date

Usethedatecommand'sabilitytoadddaystoexistingdates.Thefollowing:DATE=2013-05-25foriin{0..8}doNEXT_DATE=$(date+%m-%d-%Y-d"$DATE+$iday")echo"$NEXT_DATE"done ...

定时备份mysql数据库的shell脚本

最近项目需要定时备份mysql数据库的数据,根据需求写了一份定时备份mysql数据库的脚本。在这儿记一下以后要用了可以直接拿来用   -hmysql的地址 默认为localhost    -P端口号 默认为3306  -u用户 默认为root  -p密码默认为...

shell中遍历数组的几种方式

#!/bin/basharr=(1236'你好')length=${#arr}echo"长度为:$length"#for遍历foritemin${arr[*]}doecho$itemdonei=0#until遍历echountilbeginuntil((i++>$length))doecho${arr[((i-1...

[记录]Ubuntu下,使用Shell,简单替换有规律的文件名称

因工作中需要将Flash转为Html5,并且要有动画效果,我将Flash的组件导出Png序列,然后将Png序列拼接成一张雪碧图(Sprite),名字为在生成雪碧图可以排序,需要改成数字名称。而名字是可以在导出的时候进行设置的,想到这个的时候,两行泪水从眼中花落T_T,现在才发现,不过我清楚如何替换了.文件名格式:Spr...

[转载][记录]shell 批量修改文件名

4楼回复我刚好是在vagrant+ubuntu中进行开发,windows手动修改太麻烦。#!/bin/kshls*.htm|whilereadNAMEdoecho$NAMEpage_article${NAME%.htm}.phpdone我是将所有的.htm修改了page_article{}.php文件运行之后是对的,看...
首页上一页...56789...下一页尾页