-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisk-info.bash
executable file
·79 lines (68 loc) · 1.82 KB
/
disk-info.bash
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/bin/bash
##
## This file is part of the `src-run/user-scripts-server` project.
##
## (c) Rob Frawley 2nd <[email protected]>
##
## For the full copyright and license information, please view the LICENSE.md
## file that was distributed with this source code.
##
# exit on error
set -e
# internal variables
VERSION="0.1.0"
LSBLK_BIN="$(which lsblk)"
# behavior variables
OUTPUT_COLUMNS_DEFAULT_SIMPLE="NAME,FSTYPE,SIZE"
OUTPUT_COLUMNS_DEFAULT_EXTENDED="NAME,TYPE,FSTYPE,SIZE,UUID,MAJ:MIN,RM,RO,LABEL,MOUNTPOINT"
OUTPUT_COLUMNS=""
OUTPUT_OVERWRITE=1
# get script base name
function scriptBasename() {
echo "$(basename $(realpath $BASH_SOURCE))"
}
# display script usage
function usage() {
echo -en "Usage: ./$(scriptBasename) [OPTIONS]\n"
echo -en "\t--version Show the script version.\n"
echo -en "\t--help Show this help text.\n"
echo -en "\t-e Extended default columns.\n"
echo -en "\t-a Add to the default columns (by default, only the columns specified will be shown)"
echo -en "\t-o=COL Specify columns to output for lsblk [NAME,FSTYPE,LABEL,UUID,MOUNTPOINT,SIZE,...]\n"
}
# parse script arguments
for arg in "$@"
do
case $arg in
--help)
writeUsage
exit 0
;;
--version)
writeVersion
exit 0
;;
-e)
OUTPUT_COLUMNS_DEFAULT_SIMPLE="${OUTPUT_COLUMNS_DEFAULT_EXTENDED}"
;;
-a)
OUTPUT_OVERWRITE=0
;;
-o=*)
OUTPUT_COLUMNS="${OUTPUT_COLUMNS},${arg#*=}"
;;
esac
done
# use user-provided columns or defaults
if [[ "${OUTPUT_COLUMNS}" != "" ]]; then
OUTPUT_COLUMNS="${OUTPUT_COLUMNS:1}"
else
OUTPUT_COLUMNS="${OUTPUT_COLUMNS_DEFAULT_SIMPLE}"
fi
# should columns overwrite or add to?
if [[ "${OUTPUT_OVERWRITE}" == 0 ]]; then
OUTPUT_COLUMNS="+${OUTPUT_COLUMNS}"
fi
# call command
${LSBLK_BIN} -o ${OUTPUT_COLUMNS}
# EOF