X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Farchival%2Fcompare_backup_drive.sh;h=4f36ceb4e03e656b64f1c845fef669e60de38382;hb=refs%2Fheads%2Fmain;hp=711200bda1756daa6b1e48b43a894eb0515c1a01;hpb=409ea4b67304c6b62694b1ddba50662f77af3f3d;p=feisty_meow.git diff --git a/scripts/archival/compare_backup_drive.sh b/scripts/archival/compare_backup_drive.sh index 711200bd..4f36ceb4 100644 --- a/scripts/archival/compare_backup_drive.sh +++ b/scripts/archival/compare_backup_drive.sh @@ -10,28 +10,31 @@ function compare_archives_with_target() { local target="$1"; shift +echo compare arch with target: $target + for currdir in $MAJOR_ARCHIVE_SOURCES; do sep echo "comparing '$currdir' with target '$target', where 'less thans' are on the target..." - compare_dirs "$target/$(basename $currdir)" "$currdir" +echo would do-- compare_dirs "$target/$(basename $currdir)" "$currdir" done } # decide which drive to compare. targets="$1" if [ -z "$targets" ]; then - targets=($($(which ls) -1 /media/$USERNAME)) + targets=($($(whichable ls) -1 /media/$USER/*)) if [ ${#targets[@]} -gt 1 ]; then echo " Please provide a media drive name on the command line, because more than one possibility exists. " + exit 1 fi fi echo "comparing the media drive '${targets[0]}' against local archives." -compare_archives_with_target "/media/$USERNAME/${targets[0]}" +compare_archives_with_target "/media/$USER/${targets[0]}" sep