Replace an echo | awk printf with builtin printf.

This commit is contained in:
Richard Soderberg 2015-09-05 02:20:39 -07:00
parent a342ff7579
commit 487f7cb6a4
1 changed files with 1 additions and 1 deletions

View File

@ -1512,6 +1512,6 @@ if [[ -n $ALLCIPHERS ]]; then
else
r="fail"
fi
echo "$c $r"|awk '{printf "%-35s %s\n",$1,$2}'
printf "%-35s %s\n" "$c" "$r"
done
fi