Compare commits

...

2 commits

4 changed files with 13 additions and 6 deletions

View file

@ -28,5 +28,6 @@ A feature-barren DOS clone of `ls` that hides Windows hidden files. Relies on
- `dos.sh`: Simple wrapper for executing Windows commands directly.
- `elevate.sh`: Elevate WSL (`-l`) or Windows (`-w`) commands from WSL.
- `explorer.sh`: Launch explorer from WSL.
- `pwsh.sh`: Launch PowerShell Core.
- `terminal.sh`: Launch Windows Terminal.

View file

@ -13,12 +13,11 @@ if [[ "$1" == "-l" ]]; then
elif [[ "$1" == "-w" ]]; then
mode='dos'
shift
fi
# error if no target
if [ "$#" -eq 0 ]; then
echo "elevate: no target"
exit 3
# error if no target for DOS
if [ "$#" -eq 0 ]; then
echo "elevate: DOS mode requires a target"
exit 3
fi
fi
# consume target based on mode

View file

@ -5,5 +5,6 @@ install DIR="~/.bin":
cp dos.sh {{DIR}}/dos
cp elevate.sh {{DIR}}/elevate
cp explorer.sh {{DIR}}/explorer
cp pwsh.sh {{DIR}}/pwsh
cp terminal.sh {{DIR}}/terminal

6
scripts/pwsh.sh Executable file
View file

@ -0,0 +1,6 @@
#!/usr/bin/bash
cd '/mnt/c/Program Files/WindowsApps/'
target=`find Microsoft.PowerShell* -name 'pwsh.exe'`
"$target"