X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Farchival%2Fsnarf_notes.pl;h=cf526862145a152035aa7c4062d717cad5f35313;hb=5d5c56097ac1750cada805755bebea73f350e331;hp=ba81fe083def063d5398b7f4087f56ed3d19cdaf;hpb=d5e7ab86c2e5db423ea41fb9f04b384d131ce5ae;p=feisty_meow.git diff --git a/scripts/archival/snarf_notes.pl b/scripts/archival/snarf_notes.pl index ba81fe08..cf526862 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. @@ -38,21 +39,17 @@ 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"); # 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", "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 folders we care about. -#unneeded it seems: &snarf_by_pattern($snarf_file_base, "$root", "notes", "cloud"); - ############################################################################ # now rename the file so only the unpacker can access it.