Skip to content

Commit a4853ef

Browse files
committed
[fix] : Fixed SC2005
1 parent 392ea50 commit a4853ef

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

build.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,7 @@ msg_error() {
103103

104104
# Usage: getclm <number>
105105
# 標準入力から値を受けとり、引数で指定された列を抽出します。
106-
getclm() {
107-
echo "$(cat -)" | cut -d " " -f "${1}"
108-
}
106+
getclm() { cat - | cut -d " " -f "${1}"; }
109107

110108
# Usage: echo_blank <number>
111109
# 指定されたぶんの半角空白文字を出力します

0 commit comments

Comments
 (0)