From 56dbd9d14e01fc4e4d4987a047f952ffa57f7777 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Mon, 5 Apr 2021 20:28:05 -0500 Subject: Make tar command verbose and log to backup and cleanup logs. --- chapter7/backup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'chapter7/backup.sh') diff --git a/chapter7/backup.sh b/chapter7/backup.sh index a6abb86..7745551 100644 --- a/chapter7/backup.sh +++ b/chapter7/backup.sh @@ -9,7 +9,7 @@ else printf "%b" "${GRN}Backing up ${YLW}${LFS}${GRN} to ${YLW}${file}${RST}... " pushd "${LFS}" > /dev/null || exit 1 - sudo XZ_OPTS="-T${NUMPROCS} -e" tar cJpf "${HOME}"/"${file}" "${directories[@]}" >/dev/null 2>&1 & pid=$! + sudo XZ_OPTS="-T${NUMPROCS} -e" tar cJvpf "${HOME}"/"${file}" "${directories[@]}" >"${LFS}"/sources/log/chapter7/backup.log 2>&1 & pid=$! spinner "$pid" "${SPINNER}" retval=$? if [ "${retval}" -ne 0 ]; then -- cgit v1.2.3-54-g00ecf