-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOS.shsource
60 lines (54 loc) · 1.61 KB
/
OS.shsource
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env bash
#*******************************************************************************
# Copyright (c) 2020 Eclipse Foundation and others.
# This program and the accompanying materials are made available
# under the terms of the Eclipse Public License 2.0
# which is available at http://www.eclipse.org/legal/epl-v20.html,
# or the MIT License which is available at https://opensource.org/licenses/MIT.
# SPDX-License-Identifier: EPL-2.0 OR MIT
#*******************************************************************************
IFNDEF="$(echo "${BASH_SOURCE[@]}" | sha1sum | sed -E 's/^([^ ]*) .*$/import_\1/g')"
if [ -z "${!IFNDEF:-}" ]; then export "${IFNDEF}=1"
os_name() {
local name
name="UNKNOWN:$(uname -s)"
case "$(uname -s)" in
Linux*) name="linux";;
Darwin*) name="darwin";;
CYGWIN*) name="windows";;
MINGW*) name="windows";;
esac
echo "${name}"
}
os_name_regex() {
local name
name="UNKNOWN:$(uname -s)"
case "$(uname -s)" in
Linux*) name="linux";;
Darwin*) name="(macos|darwin)";;
CYGWIN*) name="windows";;
MINGW*) name="windows";;
esac
echo "${name}"
}
os_arch() {
local arch
arch="UNKNOWN:$(uname -m)"
case "$(uname -s)" in
i*86*) arch="(x86)";;
x86_64*) arch="(x86_64)";;
esac
echo "${arch}"
}
os_arch_regex() {
local arch
arch="UNKNOWN:$(uname -m)"
case "$(uname -s)" in
i[3456]86*) arch="(i[3456]86|x86)";;
x86_64*) arch="(x86_64|x64|amd64)";;
x64*) arch="(x86_64|x64|amd64)";;
amd64*) arch="(x86_64|x64|amd64)";;
esac
echo "${arch}"
}
fi #IFNDEF