本帖最后由 娜美 于 2022-4-16 11:13 编辑
如何在powershell脚本里加入gawk语言执行
- #@&cls&powershell "type %~s0|out-string|iex"&pause&exit
-
- gawk “!a[$0]++'‘ file
复制代码
如何在powershell脚本里加入vbs语言启动第三方脚本
- #@&cls&powershell "type %~s0|out-string|iex"&pause&exit
-
- set ws=wscript.createobject("wscript.shell")
- ws.run "tmp.bat",0
复制代码
请问如何把不同语言放在一个脚本里执行? 谢谢
- #@&cls&powershell "type %~s0|out-string|iex"&pause&exit
-
- gawk “!a[$0]++'‘ file
- set ws=wscript.createobject("wscript.shell")
- ws.run "tmp.bat",0
复制代码
|