From 512df7b622d0ca6971e41995e163fe50b101f573 Mon Sep 17 00:00:00 2001 From: skiffer-git <44203734@qq.com> Date: Tue, 2 Apr 2024 15:43:45 +0800 Subject: [PATCH] Script Refactoring --- scripts-new/bricks.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts-new/bricks.sh b/scripts-new/bricks.sh index a0820a9eb..8ab187b59 100644 --- a/scripts-new/bricks.sh +++ b/scripts-new/bricks.sh @@ -28,8 +28,8 @@ start_binaries() { #nohup "$bin_full_path" -i "$i" -c "$OPENIM_OUTPUT_CONFIG" > "test.log" 2>&1 & #nohup sh -c '"$bin_full_path" -i "$i" -c "$OPENIM_OUTPUT_CONFIG" 2>&1 | tee test.log' & #nohup ./run_my_command.sh "$bin_full_path" -i "$i" -c "$OPENIM_OUTPUT_CONFIG" > test.log 2>&1 & - nohup "$bin_full_path" -i "$i" -c "$OPENIM_OUTPUT_CONFIG" & - + cmd="$bin_full_path" -i "$i" -c "$OPENIM_OUTPUT_CONFIG" + nohup ${cmd} >> "${LOG_FILE}" 2> >(tee -a "$TMP_LOG_FILE" | while read line; do echo -e "\e[31m${line}\e[0m"; done >&2) >> "${LOG_FILE}" 2>&1 & done done