11 lines
347 B
Bash
Executable file
11 lines
347 B
Bash
Executable file
#!/usr/bin/bash
|
|
# generated with: mkwin /mnt/c/Program Files/PowerShell/7/pwsh.exe -E --or /mnt/c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe
|
|
|
|
env-share 2> /dev/null
|
|
|
|
target='/mnt/c/Program Files/PowerShell/7/pwsh.exe'
|
|
if [ ! -x "$target" ]; then
|
|
target='/mnt/c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe'
|
|
fi
|
|
|
|
"$target" $@
|