Skip to content
This repository has been archived by the owner on Jul 23, 2023. It is now read-only.

int128/wslexec

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

wslexec CircleCI

A wrapper to run a Linux command inside WSL (Windows Subsystem for Linux) from Windows native applications.

If you are looking for Git on WSL solution, andy-5/wslgit is the best.

Getting Started

Visual Studio Code and PHP

You can use PHP on WSL from Windows native Visual Studio Code.

Download the latest release and save as wslphp.exe.

Open Visual Studio Code and configure path as follows:

{
  "php.validate.executablePath": "C:\\Users\\USER\\Documents\\wslphp.exe"
}

Visual Studio and Node.js

WIP

How it works

Rename the binary to command name with prefix wsl. For example, rename the binary to wslgit to run the git command inside WSL.

Windows path translation

Windows paths (e.g. C:\) in command line are translated to WSL paths (e.g. /mnt/c).

For example,

wslgit.exe -C C:\Users\foo\example log

is translated to the following command:

git -C /mnt/c/Users/foo/example log

WSL path translation

WSL paths (e.g. /mnt/c) in standard input are translated to Windows paths (e.g. C:/).

For example,

/mnt/c/Users/foo/example

is translated to the following command:

c:/Users/foo/example

Contributions

Feel free to open issues and pull requests.

About

A wrapper to run Linux command inside WSL (Windows Subsystem for Linux) from native apps

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages