X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Farchival%2Fsnarf_notes.pl;h=fac97bcfa1fc0ccf9a22a822aadf8310dbe0c202;hb=b0b56f01f9ce0e9dae933e4b5c5792cc2ad04f67;hp=1f58543bfbf19a0330695cc91a1e420f2df20a0c;hpb=c65630c5267b40893b96526d85d06609ec21c7c5;p=feisty_meow.git diff --git a/scripts/archival/snarf_notes.pl b/scripts/archival/snarf_notes.pl index 1f58543b..fac97bcf 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,22 +38,21 @@ 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"); &snarf_by_pattern($snarf_file_base, "$root", "crucial"); +&snarf_by_pattern($snarf_file_base, "$root", "Documents"); +&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", "nuage"); +&snarf_by_pattern($snarf_file_base, "$root", "project"); +&snarf_by_pattern($snarf_file_base, "$root", "proj_"); &snarf_by_pattern($snarf_file_base, "$root", "task"); - -# backup additional folders we care about. -###ubuntu one retired because of complete unreliability. -#&snarf_by_pattern($snarf_file_base, "$root", "notes", "Ubuntu One"); +&snarf_by_pattern($snarf_file_base, "$root", "invention"); +&snarf_by_pattern($snarf_file_base, "$root", "transitory"); ############################################################################