8 lines
70 B
Bash
Executable file
8 lines
70 B
Bash
Executable file
#!/usr/bin/bash
|
|
|
|
if [ "$#" -eq 0 ]; then
|
|
pwsh
|
|
else
|
|
pwsh -C "$@"
|
|
fi
|
|
|