Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kzrnm/powershell-wsl-alias

wsl command alias for PowerShell
https://github.com/kzrnm/powershell-wsl-alias

bash powershell powershell-module windows wsl

Last synced: 7 days ago
JSON representation

wsl command alias for PowerShell

Awesome Lists containing this project

README

        

# powershell-wsl-alias
wsl command alias for PowerShell

## Install
```powershell
PS C:\powershell-wsl-alias> .\install.ps1
```

## Usage
```powershell
PS C:\> touch foo.txt
PS C:\> vi foo.txt
```

## Notice

The module is *alias*, not *bash*.
Pipeline work in powershell.

Expected
```bash
naminodarie@PC:~$ yes | head
y
y
y
y
y
y
y
y
y
y
naminodarie@PC:~$
```

Actual
```powershell
PS C:\> yes | head
^C
PS C:\>
```