8 lines
104 B
Bash
8 lines
104 B
Bash
|
#!/usr/bin/bash
|
||
|
|
||
|
if [[ ! -t 1 ]]; then
|
||
|
WRAPPER='hug'
|
||
|
fi
|
||
|
$WRAPPER '/mnt/c/Windows/System32/wsl.exe' $@
|
||
|
|