6 lines
144 B
Bash
6 lines
144 B
Bash
|
#!/bin/bash
|
||
|
# AUTHOR: Jeremy Wall (jw), jeremy@marzhillstudios.com
|
||
|
if [[ -n "$(uname -a | grep Microsoft)" ]]; then
|
||
|
export INWSL="true"
|
||
|
fi
|