Skip to content

Commit fa1a57b

Browse files
committed
lib/utilities: code style cleanup
Instead of `sort | uniq` (or worse: `uniq | sort`!), use `sort -u`. Alsö, lose `tr '\n' ' '` as it does ń̥otḩing since `$IFS` contains both space and new line (and tab). No need to pipe to `cat` then redirect to disk. Just redirect directly to the file without `cat` at all.
1 parent 1a2b8cc commit fa1a57b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

lib/utilities.bash

+6-6
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ _bash-it-array-contains-element() {
5454

5555
# Dedupe a simple array of words without spaces.
5656
_bash-it-array-dedup() {
57-
echo "$*" | tr ' ' '\n' | sort -u | tr '\n' ' '
57+
echo "$*" | tr ' ' '\n' | sort -u
5858
}
5959

6060
# Outputs a full path of the grep found on the filesystem
@@ -77,7 +77,7 @@ _bash-it-component-help() {
7777
if [[ ! -s "${file}" || -z "$(find "${file}" -mmin -300)" ]] ; then
7878
rm -f "${file}" 2>/dev/null
7979
local func="_bash-it-${component}"
80-
${func} | $(_bash-it-grep) -E ' \[' | cat > "${file}"
80+
${func} | $(_bash-it-grep) -E ' \[' > "${file}"
8181
fi
8282
cat "${file}"
8383
}
@@ -117,23 +117,23 @@ _bash-it-clean-component-cache() {
117117
# Returns an array of items within each compoenent.
118118
_bash-it-component-list() {
119119
local component="$1"
120-
_bash-it-component-help "${component}" | awk '{print $1}' | uniq | sort | tr '\n' ' '
120+
_bash-it-component-help "${component}" | awk '{print $1}' | sort -u
121121
}
122122

123123
_bash-it-component-list-matching() {
124124
local component="$1"; shift
125125
local term="$1"
126-
_bash-it-component-help "${component}" | $(_bash-it-grep) -E -- "${term}" | awk '{print $1}' | sort | uniq
126+
_bash-it-component-help "${component}" | $(_bash-it-grep) -E -- "${term}" | awk '{print $1}' | sort -u
127127
}
128128

129129
_bash-it-component-list-enabled() {
130130
local component="$1"
131-
_bash-it-component-help "${component}" | $(_bash-it-grep) -E '\[x\]' | awk '{print $1}' | uniq | sort | tr '\n' ' '
131+
_bash-it-component-help "${component}" | $(_bash-it-grep) -E '\[x\]' | awk '{print $1}' | sort -u
132132
}
133133

134134
_bash-it-component-list-disabled() {
135135
local component="$1"
136-
_bash-it-component-help "${component}" | $(_bash-it-grep) -E -v '\[x\]' | awk '{print $1}' | uniq | sort | tr '\n' ' '
136+
_bash-it-component-help "${component}" | $(_bash-it-grep) -E -v '\[x\]' | awk '{print $1}' | sort -u
137137
}
138138

139139
# Checks if a given item is enabled for a particular component/file-type.

0 commit comments

Comments
 (0)