summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2020-10-26 16:10:06 -0700
committerSean Whitton <spwhitton@spwhitton.name>2020-10-26 16:10:06 -0700
commitfb38e33d89caaa9ecbe08063ab04054caf1f98bd (patch)
treee3df2f73f42c39cc26f9d0613208de0617aaff10 /scripts
parent68fa8ad73e4c6312f99081e7c44f42c7115c8eba (diff)
downloaddotfiles-fb38e33d89caaa9ecbe08063ab04054caf1f98bd.tar.gz
update script to use .org
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/arizona/mmg/lsumm6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/arizona/mmg/lsumm b/scripts/arizona/mmg/lsumm
index 3dee0ee6..eaeca9e1 100755
--- a/scripts/arizona/mmg/lsumm
+++ b/scripts/arizona/mmg/lsumm
@@ -1,11 +1,11 @@
#!/usr/bin/perl -wl
-open my $fh, '<', '../Lecture summary.txt';
+open my $fh, '<', '../First paper final.org';
chomp(my @summary = <$fh>);
for (glob "*") {
/^(.+)\.([a-z]+)$/;
- next if $2 eq 'txt';
- my $txt = "$1.txt";
+ next if $2 eq 'org';
+ my $txt = "$1.org";
open my $fh, '>', $txt;
print $fh $1;
print $fh "";