Browse Source

Fix output sometimes appearing after prompt

master
JustAnotherArchivist 1 year ago
parent
commit
3440da3f9a
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      iasha1check

+ 3
- 1
iasha1check View File

@@ -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…
Cancel
Save