From 46e43f4bde4a35785b4997b81e86cd19f046b69b Mon Sep 17 00:00:00 2001 From: Minteck Date: Tue, 21 Dec 2021 16:52:28 +0100 Subject: Commit --- LangDetect Shell.sh | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 LangDetect Shell.sh (limited to 'LangDetect Shell.sh') diff --git a/LangDetect Shell.sh b/LangDetect Shell.sh new file mode 100644 index 0000000..d5fadc6 --- /dev/null +++ b/LangDetect Shell.sh @@ -0,0 +1,8 @@ +#!/bin/bash +if [[ "$(uname)" = "Darwin" ]]; then + # macOS + ./bin/darwin ./index.js interactive +else + # Linux/BSD/... + ./bin/linux ./index.js interactive +fi -- cgit