瀏覽代碼

Fix output sometimes appearing after prompt

master
JustAnotherArchivist 1 年之前
父節點
當前提交
3440da3f9a
共有 1 個檔案被更改,包括 3 行新增1 行删除
  1. +3
    -1
      iasha1check

+ 3
- 1
iasha1check 查看文件

@@ -42,7 +42,9 @@ echo

echo "SHA-1 comparison:"
sha1sum -c < <(printf "%s\n" "${iasha1sums[@]}") > >(perl -pe 's,^(.*)(?<!: OK)$,'"${RED}"'\1'"${RESET}"',; s,: OK$,: '"${GREEN}OK${RESET}"',; s,^, ,') 2>&1
if [[ $? -eq 0 ]]
shast=$?
wait # Wait for Perl to finish; Bash 4.4+ only
if [[ ${shast} -eq 0 ]]
then
echo "SHA-1 comparison: ${GREEN}OK${RESET}"
else


Loading…
取消
儲存