From 39751ffb42f369bda120f383cc8a1adc5c3e6616 Mon Sep 17 00:00:00 2001 From: Fred Hamster Date: Mon, 16 Dec 2024 20:01:06 -0500 Subject: [PATCH] more quieting --- .../customize/fred/scripts/jobby/archie_grabber_uva.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/customize/fred/scripts/jobby/archie_grabber_uva.sh b/scripts/customize/fred/scripts/jobby/archie_grabber_uva.sh index a6939a6d..882822a5 100644 --- a/scripts/customize/fred/scripts/jobby/archie_grabber_uva.sh +++ b/scripts/customize/fred/scripts/jobby/archie_grabber_uva.sh @@ -27,9 +27,9 @@ echo '#!/usr/bin/env bash remote_hostname="$1"; shift ARCHIVE_DIR_PREFIX="'$ARCHIVE_DIR_PREFIX'" source "$FEISTY_MEOW_APEX/scripts/core/launch_feisty_meow.sh" -pushd "$COPY_TARGET_TOP" +pushd "$COPY_TARGET_TOP" &>/dev/null mkdir -p "${remote_hostname}" -pushd "${remote_hostname}" +pushd "${remote_hostname}" &>/dev/null cp_outfile="$(mktemp /tmp/archie_grabber_copying.XXXXXX)" netcp ${remote_hostname}:${ARCHIVE_DIR_PREFIX}* . &> "$cp_outfile" retval=$? @@ -39,8 +39,8 @@ if [ $retval -ne 0 ]; then echo "Did not find any archives on \"$remote_hostname\"." fi rm "$cp_outfile" -popd -popd +popd &>/dev/null +popd &>/dev/null exit $retval ' > $ARCHIVE_SNAGGER_COMMAND -- 2.34.1