X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fcustomize%2Ffred%2Fscripts%2Fcompare_soapbox.sh;fp=scripts%2Fcustomize%2Ffred%2Fscripts%2Fcompare_soapbox.sh;h=0000000000000000000000000000000000000000;hb=b4b11bb8121b10d0e645d1b12b7b22b38faa9c3b;hp=8dd3f44aacf380a89a73263e6fe513559b55de8e;hpb=4b55659ba1a25adb598f03b13b10965336186e83;p=feisty_meow.git diff --git a/scripts/customize/fred/scripts/compare_soapbox.sh b/scripts/customize/fred/scripts/compare_soapbox.sh deleted file mode 100644 index 8dd3f44a..00000000 --- a/scripts/customize/fred/scripts/compare_soapbox.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/bash - -# compares the soapbox with the real archive to see if any older stuff might be -# left behind. if it's got a less than in front, then it's only on the soapbox drive -# now rather than the pc's hard drive. - -source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh" - -function compare_archives_with_target() -{ - local target="$1"; shift - - for currdir in $ARCHIVE_COLLECTION_LIST; do - sep - echo "comparing '$currdir' with target '$target', where 'less thans' are on the target..." - compare_dirs "$target/$(basename $currdir)" "$currdir" - done -} - -compare_archives_with_target /media/fred/soapboxdrive - -sep -