We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 807c4ce commit 1531083Copy full SHA for 1531083
tools/clean.sh
@@ -26,7 +26,7 @@ work_dir="$(
26
load_config "${script_path}/default.conf"
27
load_config "${script_path}/custom.conf"
28
cd "${script_path}"
29
- echo "$(realpath "${work_dir}")"
+ realpath "${work_dir}"
30
)"
31
32
# msg_common [type] [-n] [string]
@@ -62,7 +62,7 @@ umount_chroot () { "${tools_dir}/umount.sh" -d "${work_dir}" -m 3 "$([[ "${nocol
62
63
# Usage: getclm <number>
64
# 標準入力から値を受けとり、引数で指定された列を抽出します。
65
-getclm() { echo "$(cat -)" | cut -d " " -f "${1}"; }
+getclm() { cut -d " " -f "${1}"; }
66
67
_help() {
68
echo "usage ${0} [option]"
0 commit comments