diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-03-23 14:10:54 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-03-23 14:10:54 -0500 |
commit | a637659b41e1930349b31ce152c1cfbb9a6b5333 (patch) | |
tree | 29980208a5c4f9c7ba9b9709e5863f5a1d7930ad /download.sh | |
parent | 66d4171655e0b93766c82f50ce06521f85b58222 (diff) | |
parent | a9998650875c122d505c3046b23dc5f8590857f7 (diff) |
Merge master to chapter7
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 |