aboutsummaryrefslogtreecommitdiff
path: root/testTheThing/clean_all.scm
diff options
context:
space:
mode:
authornathansmith <nathansmith@posteo.com>2025-05-22 12:11:10 -0600
committernathansmith <nathansmith@posteo.com>2025-05-22 12:11:10 -0600
commitd194694f31002068868a378d121ed0e2db01c378 (patch)
tree295a67261fef4ebd02e29c36dd3e255492cffdfa /testTheThing/clean_all.scm
parent8176a8aac5d490562200eca0adb6efe5cc95e61a (diff)
Messy folder
Diffstat (limited to 'testTheThing/clean_all.scm')
-rwxr-xr-xtestTheThing/clean_all.scm14
1 files changed, 14 insertions, 0 deletions
diff --git a/testTheThing/clean_all.scm b/testTheThing/clean_all.scm
new file mode 100755
index 0000000..82091d9
--- /dev/null
+++ b/testTheThing/clean_all.scm
@@ -0,0 +1,14 @@
+#! /usr/bin/guile \
+-e main -s
+!#
+
+(define (main args)
+ (for-each
+ (lambda (file)
+ (system (string-append "./clean_up_html.scm " file ".html"
+ " | tidy | pandoc -f html -t org > "
+ "org/" file ".org")))
+ '("index" "linux_room" "music_room" "nathans_philosophy"
+ "truth" "ttr" "tv_corner" "distro_guides/arch"
+ "distro_guides/fedora" "distro_guides/xfce"
+ "error/404")))