Explorar el Código

Fix output sometimes appearing after prompt

master
JustAnotherArchivist hace 1 año
padre
commit
3440da3f9a
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. +3
    -1
      iasha1check

+ 3
- 1
iasha1check Ver fichero

@@ -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


Cargando…
Cancelar
Guardar