Skip to content

Instantly share code, notes, and snippets.

@thombashi
Created January 18, 2020 01:46
Show Gist options
  • Save thombashi/fdc4643cd26f36dc57288c30e94f725a to your computer and use it in GitHub Desktop.
Save thombashi/fdc4643cd26f36dc57288c30e94f725a to your computer and use it in GitHub Desktop.
Detect WSL by shell commands
#!/bin/sh
if uname -r | \grep -q Microsoft ; then
echo "WSL"
else
echo "non WSL"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment