diff options
Diffstat (limited to 'postpost/del_headings')
-rwxr-xr-x | postpost/del_headings | 33 |
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 + |