From 6f09b154b168876129324349ced6cd0fa32d8213 Mon Sep 17 00:00:00 2001 From: Matthew Lemon Date: Sat, 25 May 2024 22:08:48 +0100 Subject: Adds perl script to update quicknotes on blog --- clear_and_post_quicknote.pl | 75 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100755 clear_and_post_quicknote.pl diff --git a/clear_and_post_quicknote.pl b/clear_and_post_quicknote.pl new file mode 100755 index 0000000..4938b5e --- /dev/null +++ b/clear_and_post_quicknote.pl @@ -0,0 +1,75 @@ +#!/usr/bin/env -S perl + +use 5.010; +use warnings; +use strict; +use DateTime; +use File::Copy; +use Cwd qw(getcwd); + +my $description = $ARGV[0]; + +if (not defined $description) { + print "Please pass even a paltry introductory sentence in quotes. Thanks.\n"; + exit; +} + +sub get_quicknotes { + my $quicknote_file = "/home/lemon/Documents/Notes/quicknote.md"; + my $bak = "/home/lemon/Documents/Notes/quicknote.md-BAK"; + copy($quicknote_file, $bak) or die "Failed to make backup of file: $!"; + my @quicknotes; + open my $fh, "<", $quicknote_file or die "Cannot open quicknote.md file"; + while (<$fh>) { + if ($_ =~ /^- (.*)$/) { + push @quicknotes => "- $1\n"; + } + } + truncate $quicknote_file, 0; + return \@quicknotes; +} + + +my $now = DateTime->now; +my $day_name = $now->day_name; +my $day = $now->day; +my $month = $now->month_name; +my $year = $now->year; + +my $outfile = "/home/lemon/code/html/yulqen.org/content/techjournal/quicknote_capture_${day}_${month}_$year.md"; + +my $frontmatter = <>", $outfile or die $!; +print $FH $frontmatter; +foreach (@{$qn_ref}) { + print $FH $_; +} +close($FH); + +chdir "/home/lemon/code/html/yulqen.org"; +say getcwd(); +# my @gitstatuscmd = ("git", "status"); +my @gitaddcmd = ("git add -u"); +my @gitcommitcmd = ("git commit -m 'update'"); +my @gitpushcmd = ("git push"); +my @pushcmd = ("make push"); +system(@pushcmd) or die "Cannot push the file to the remote: $?"; +system(@gitaddcmd) or die "Cannot do git add $?"; +system(@gitcommitcmd) or die "Cannot do git commit: $?"; +system(@gitpushcmd) or die "Cannot do git push: $?"; + +say "Done!"; + -- cgit v1.2.3