系统相关
首页 > 系统相关> > VBS隐藏窗口运行Cygwin Bash内置命令/函数的方法(主要供Windows任务计划调用使用)

VBS隐藏窗口运行Cygwin Bash内置命令/函数的方法(主要供Windows任务计划调用使用)

作者:互联网

File:bash-hide.vbs

Dim Wsh,ScriptPath,CygwinInstallPath,CygwinInstallDrive,BashPath,ArgumentParamter

ArgumentParamter=""

'Wscript.Echo "参数个数:" & Wscript.Arguments.Count
IF Wscript.Arguments.Count >0 Then
	For i=0 To Wscript.Arguments.Count-1 
		ArgumentParamter=ArgumentParamter & Space(1) & Wscript.Arguments(i)
	Next
End If
'Msgbox ArgumentParamter
'Wscript.Quit

Set Fso=CreateObject("Scripting.FileSystemObject")
ScriptPath=Fso.GetFile(Wscript.ScriptFullName).ParentFolder.Path
Set Conf=Fso.OpenTextFile(ScriptPath & "\cygwin_installion_path.txt",1,false)
CygwinInstallPath=Conf.ReadAll()
Set Folder=Fso.GetFolder(CygwinInstallPath)
CygwinInstallDrive=Folder.Drive

BashPath=CygwinInstallDrive & "\cygwin64\bin\bash.exe"

'Wscript.Echo BashPath & " --login -i -c '" & ArgumentParamter & ";bash'"


Set Wsh=CreateObject("Wscript.Shell")
'注意:如果参数中含有中文,则必须在UTF-8的窗口中运行命令,比如在Cygwin窗口中执行 wscript //nologo bash-hide.vbs potplayertv 湖南卫视
'否则会报错,比如原生cmd窗口默认为 chcp 936编码,带中文参数调用此脚本就达不到预期的效果
Wsh.run BashPath & " --login -i -c '" & ArgumentParamter & "'",vbHide

'保持窗口可见,且不自动退出
'Wsh.run BashPath & " --login -i -c '" & ArgumentParamter & ";bash'"

其中cygwin_installion_path.txt文件保存Cygwin的安装路径(纯文本),eg:H:\cygwin64,以适配不同电脑 Cygwin 安装在不同位置的情况;


在 Cygwin 窗口中调用bash-hide.vbs

若要在Cygwin窗口中直接调用 bash-hide.vbs xxx命令,建议在会话配置文件(~/.bash_profile)中装载以下函数:

bash-hide.vbs() {
	#劫持bash-hide.vbs命令,使用wscript调用之
	#详见: D:\Extra_bin\bash-hide.vbs
	#Bash窗口隐藏
	#调用时可传递环境变量依然有效,比如:
	# _T='E:\' bash-hide.vbs cygwin  #在指定目录打开全新Cygwin窗口
	cygstart bash-hide.vbs $@
}

bash-run.vbs() {
	#劫持bash-run.vbs命令,使用wscript调用之
	#详见: D:\Extra_bin\bash-run.vbs
	#bash窗口可见
	cygstart bash-run.vbs $@
}


Windows任务计划调用示例:

标签:vbs,hide,Windows,Wscript,VBS,Bash,Cygwin,bash,ArgumentParamter
来源: https://www.cnblogs.com/cnhack/p/16177215.html