浏览代码

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


正在加载...
取消
保存