6 lines
137 B
PowerShell
6 lines
137 B
PowerShell
|
param (
|
||
|
[string]
|
||
|
$CommandPath = "rxvt-unicode"
|
||
|
)
|
||
|
|
||
|
Start-Process -FilePath "wsl.exe" -ArgumentList $CommandPath -NoNewWindow
|