X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Farchival%2Fsnarf_notes.pl;h=e41c2e855b41e450b5f23d01f720c9a0e0bcf27c;hb=8064b3bda39bcb17d8550006a2e99cd9e5cfadee;hp=b8b3c9f10e24cacb158998df3995de952fe0c134;hpb=7ef9f4fdbae698dff9a08189f616564d471abc45;p=feisty_meow.git diff --git a/scripts/archival/snarf_notes.pl b/scripts/archival/snarf_notes.pl index b8b3c9f1..e41c2e85 100644 --- a/scripts/archival/snarf_notes.pl +++ b/scripts/archival/snarf_notes.pl @@ -8,7 +8,7 @@ # # # Purpose: # # # -# Stuffs up an archive with quartz lists and current new notes. # +# Produces an archive with any current notes from the user's home dir. # # # ############################################################################### # This program is free software; you can redistribute it and/or modify it # @@ -18,9 +18,10 @@ # version of the License. Please send any updates to "fred@gruntose.com". # ############################################################################### -require "importenv.pl"; require "shared_snarfer.pl"; +use Env qw(HOME); + &initialize_snarfer; # get the number we use and increment it for the next use. @@ -37,21 +38,18 @@ local($snarf_file) = &snarf_name($snarf_file_base, $number); ############################################################################ # get top level text files and other potentially important items... -&backup_files($snarf_file_base, $number, $root, ".", ("*.html", "*.txt")); -# backup all the hierarchies in our quartz directory. -&backup_hierarchy($snarf_file_base, $number, "$root", "quartz"); +&backup_files($snarf_file_base, $number, $root, ".", ("*.html", "*.txt", "makefile*")); # gather any directories in our home that match these often recurring patterns. -&snarf_by_pattern($snarf_file_base, "$root", "notes"); -&snarf_by_pattern($snarf_file_base, "$root", "project"); -&snarf_by_pattern($snarf_file_base, "$root", "issue"); -&snarf_by_pattern($snarf_file_base, "$root", "idea"); +#retired since this is a repo now: &snarf_by_pattern($snarf_file_base, "$root", "cloud"); &snarf_by_pattern($snarf_file_base, "$root", "crucial"); +&snarf_by_pattern($snarf_file_base, "$root", "idea"); +&snarf_by_pattern($snarf_file_base, "$root", "issue"); &snarf_by_pattern($snarf_file_base, "$root", "list"); +&snarf_by_pattern($snarf_file_base, "$root", "note"); +&snarf_by_pattern($snarf_file_base, "$root", "project"); &snarf_by_pattern($snarf_file_base, "$root", "task"); - -# backup additional items from our Ubuntu One folder. -&snarf_by_pattern($snarf_file_base, "$root", "notes", "Ubuntu One"); +&snarf_by_pattern($snarf_file_base, "$root", "invention"); ############################################################################