diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-03-23 14:04:35 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-03-23 14:04:35 -0500 |
commit | a9998650875c122d505c3046b23dc5f8590857f7 (patch) | |
tree | 68a96d364fbc8a28166d2b61a34ef424650d44d9 /download.sh | |
parent | ddc24ed59f6ad9f0e36258ece20bd3e04e88e5e0 (diff) |
Use printf instead of echo.
Diffstat (limited to 'download.sh')
-rw-r--r-- | download.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/download.sh b/download.sh index 179990d..9446d82 100644 --- a/download.sh +++ b/download.sh @@ -9,7 +9,7 @@ download() echo -n " " wget -nc -q --show-progress --progress=dot "$url" 2>&1 | grep --line-buffered "%" | \ sed -u -e "s,\.,,g" | awk '{printf("\b\b\b\b%4s", $2)}' - echo -ne "\b\b\b\b\n" + printf "%b" "\b\b\b\b\n" tput cnorm } @@ -23,12 +23,12 @@ cat packages.csv patches.csv | while read -r line; do if [ ! -f "${CACHEFILE}" ]; then - echo -ne "${PRP}Downloading ${YLW}${CACHEFILE}${RST}... " + printf "%b" "${PRP}Downloading ${YLW}${CACHEFILE}${RST}... " #wget -nc ${URL} -O ${LFS}/sources/${CACHEFILE} --progress=dot -q --show-progress 2>&1 | awk 'NF>2 && $(NF-2) ~ /%/{printf "\r \t\t\t\t\t\t%s",$(NF-2)} END{print "\r "}' download "${URL}" if ! echo "${MD5SUM} ${LFS}/sources/${CACHEFILE}" | md5sum -c > /dev/null 2>&1; then rm -f "${LFS}/sources/${CACHEFILE}" - echo -e "\n${GRN}Verification of ${YLW}${CACHEFILE} ${RED}failed! MD5 mismatch!${RST}" + printf "%b" "\n${GRN}Verification of ${YLW}${CACHEFILE} ${RED}failed! MD5 mismatch!${RST}\n" exit 1 fi fi |