about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2024-03-18 10:49:13 -0500
committerCase Duckworth2024-03-18 10:49:13 -0500
commit40c45d795ca67c827f6a66fa35a6630364809910 (patch)
treed393e1e1f1be49dacc2a8b489aeee845e2b8eb36
parentAdd ROOT template variable (diff)
downloadschwa-40c45d795ca67c827f6a66fa35a6630364809910.tar.gz
schwa-40c45d795ca67c827f6a66fa35a6630364809910.zip
Change sourcefiles' extensions to .txt
I probably need to add like, image ... something
-rwxr-xr-xschwa.awk4
1 files changed, 2 insertions, 2 deletions
diff --git a/schwa.awk b/schwa.awk index cdc558e..e584dfa 100755 --- a/schwa.awk +++ b/schwa.awk
@@ -29,8 +29,8 @@ FNR == 1 {
29 printf("%s -> %s\n", FILENAME, OUTFILE) 29 printf("%s -> %s\n", FILENAME, OUTFILE)
30 if (system("mkdir -p " OUTD outfn(FILENAME, 2))) 30 if (system("mkdir -p " OUTD outfn(FILENAME, 2)))
31 die(1, "Can't make directory: " outfn(FILENAME, 2)) 31 die(1, "Can't make directory: " outfn(FILENAME, 2))
32 if (!system("cp " FILENAME " " outfn(FILENAME, 4))) 32 if (!system("cp " FILENAME " " outfn(FILENAME, 4) ".txt"))
33 TMPLV["RAWFILE"] = outfn(FILENAME, 3) 33 TMPLV["RAWFILE"] = outfn(FILENAME, 3) ".txt"
34 OUTSTR = "" 34 OUTSTR = ""
35} 35}
36 36