mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-04 18:27:36 +00:00
12 lines
411 B
Batchfile
12 lines
411 B
Batchfile
|
@echo off
|
||
|
REM Usage: wslrun.cmd <bash command>
|
||
|
REM Runs the given command in the Windows Subsystem for Linux bash shell.
|
||
|
|
||
|
REM Locate bash.exe
|
||
|
REM 32/64 bits causes issues here because it actually redirects the System32 dir
|
||
|
set BASH=bash.exe
|
||
|
if exist C:\Windows\System32\bash.exe set BASH=C:\Windows\System32\bash.exe
|
||
|
if exist C:\Windows\Sysnative\bash.exe set BASH=C:\Windows\Sysnative\bash.exe
|
||
|
|
||
|
%BASH% -c "%*"
|