Update Nlbench_beta.sh

This commit is contained in:
Jensfrank 2024-07-17 23:30:27 +08:00 committed by GitHub
parent bc622645ba
commit 07d9766d23
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -249,10 +249,19 @@ run_script() {
sed -i '/^$/d' "$temp_file" # 删除空行
# 保留最后一次出现的特定标头信息及其之后的内容
awk 'BEGIN{keep=0}
awk '
BEGIN { keep=0 }
/# ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #/ { keep=NR }
END{if (keep!=0) print}
{if (NR >= keep) print}' "$temp_file" > "${output_file}_gb5"
{ lines[NR] = $0 }
END {
if (keep != 0) {
for (i=keep; i<=NR; i++) {
print lines[i]
}
}
}
' "$temp_file"
cp "$temp_file" "${output_file}_gb5"
;;
# 融合怪
3)