-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjtool-lshw
executable file
·52 lines (41 loc) · 1.04 KB
/
jtool-lshw
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
#!/bin/bash
# Usage: jtool-lshw [OPTIONS]
########################################################################
# Bash environment
########################################################################
# Safety
set -o errexit \
-o pipefail \
-o nounset \
-o noclobber
# Extensions
set +o posix
shopt -s lastpipe
shopt -s expand_aliases
shopt -s extglob
shopt -s globstar
########################################################################
# Handle private protocol
########################################################################
if (( $# == 1 )); then
case $1 in
-\?) exec lshw -help 2>&1 ;;
-\:) exec cat <<SYNOPSYS
jtool CMD
CMD sinopsys...
SYNOPSYS
exit 0
;;
esac
fi
########################################################################
# Command
########################################################################
# `lshw` options
declare -a LSHW_OPT=(
-json
)
# `lshw` with JSON output!
lshw "${LSHW_OPT}" "$@"
exit
# vim:syntax=sh:et:sw=4:ts=4:ai