Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/kzrnm/powershell-wsl-alias
- Owner: kzrnm
- License: mit
- Created: 2018-03-04T06:49:08.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-12T13:48:26.000Z (almost 7 years ago)
- Last Synced: 2024-11-28T01:29:57.762Z (2 months ago)
- Topics: bash, powershell, powershell-module, windows, wsl
- Language: PowerShell
- Size: 3.91 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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:\>
```