X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Farchival%2Fsnarf_notes.pl;h=24020b79473d3073b3bec63a34c99336ce5f502a;hb=aa7455f9107b309dde0f3088cb1be5c995e43600;hp=b94d096dbf18a7131e568deef79af46b53b4d276;hpb=e3048a74dee2b60a40af5557d55cee99868cccb2;p=feisty_meow.git diff --git a/scripts/archival/snarf_notes.pl b/scripts/archival/snarf_notes.pl index b94d096d..24020b79 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,17 +18,18 @@ # 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. local($number) = &retrieve_number("aa_backup"); # variables for directory location to backup and the file to dump it in. -local($root) = "$HOME"; -local($snarf_file_base) = &snarf_prefix("notes-"); +local($root) = "$FEISTY_MEOW_PERSONAL_HOME"; +local($snarf_file_base) = &snarf_prefix("notes"); local($snarf_file) = &snarf_name($snarf_file_base, $number); # store the archive number in the file for retrieval on the other side. @@ -37,21 +38,23 @@ 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*", ".bashrc", ".bash_history")); # 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", "fredspace"); +&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", "Sync"); &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"); +&snarf_by_pattern($snarf_file_base, "$root", "invention"); +&snarf_by_pattern($snarf_file_base, "$root", "transitory"); ############################################################################