summaryrefslogtreecommitdiff
path: root/bin/clean_html
diff options
context:
space:
mode:
authorJohn J. Camilleri <john@digitalgrammars.com>2018-12-06 13:47:50 +0100
committerJohn J. Camilleri <john@digitalgrammars.com>2018-12-06 13:47:50 +0100
commitd880a61857ceec0f4b2870b6a5e86b271a93b07c (patch)
tree77d0cfe4f81c10778b035919a3c85a100813a845 /bin/clean_html
parent7bd086ba1925ba96533d4d021527621c2f8f8c83 (diff)
Add some documentation to update_html
Diffstat (limited to 'bin/clean_html')
-rwxr-xr-xbin/clean_html4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/clean_html b/bin/clean_html
index 9e3e9c84c..8f0ec83d9 100755
--- a/bin/clean_html
+++ b/bin/clean_html
@@ -1,7 +1,7 @@
#!/bin/bash
-# This script finds all .t2t (txt2tags) and .md (markdown) files
-# and deletes the corresponding html file
+# This script finds all .t2t (txt2tags) and .md (Markdown) files
+# and deletes the corresponding HTML file of the same name.
find . -name '*.t2t' | while read t2t ; do
html="${t2t%.t2t}.html"