summaryrefslogtreecommitdiff
path: root/postpost/del_headings
diff options
context:
space:
mode:
Diffstat (limited to 'postpost/del_headings')
-rwxr-xr-xpostpost/del_headings33
1 files changed, 33 insertions, 0 deletions
diff --git a/postpost/del_headings b/postpost/del_headings
new file mode 100755
index 0000000..0dc4182
--- /dev/null
+++ b/postpost/del_headings
@@ -0,0 +1,33 @@
+#!/bin/sh
+
+for t in $1*
+do
+ if [ -e $t ]
+ then
+ for u in $t"/Post/*_noheadings"
+ do
+ if [ -e $u ]
+ then
+ rm $u;
+ fi
+ done
+ fi
+done
+
+for t in $1*
+do
+ if [ -e $t ]
+ then
+ for s in $t/Post/ft-*
+ do
+ if [ -e $s ]
+ then
+ echo $s;
+ u=$(grep -c . $s);
+ u=$[$u-1];
+ tail -n$u $s > $s"_noheadings";
+ fi
+ done
+ fi
+done
+