diff options
Diffstat (limited to 'pastebin/website-pastebin')
-rwxr-xr-x | pastebin/website-pastebin | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pastebin/website-pastebin b/pastebin/website-pastebin index 641e75b..185672d 100755 --- a/pastebin/website-pastebin +++ b/pastebin/website-pastebin @@ -72,7 +72,10 @@ sub slugify { our $dirname = dirname(__FILE__); our $in = "$dirname/skeleton.org"; our $out; -my %ENV = (title => $title); +my $date = `date +"%Y-%m-%d %A %H:%M"`; +chomp $date; +my %ENV = (title => $title, date => $date); + # Derived from both: # https://unix.stackexchange.com/a/294836 # https://stackoverflow.com/a/47664214 |