summaryrefslogtreecommitdiff
path: root/indexing/makeindex/auto
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /indexing/makeindex/auto
Initial commit
Diffstat (limited to 'indexing/makeindex/auto')
-rw-r--r--indexing/makeindex/auto26
1 files changed, 26 insertions, 0 deletions
diff --git a/indexing/makeindex/auto b/indexing/makeindex/auto
new file mode 100644
index 0000000000..fe52db4bed
--- /dev/null
+++ b/indexing/makeindex/auto
@@ -0,0 +1,26 @@
+#!/bin/sh
+
+req=$*
+
+for i in FILES ACK CONTRIB COPYING PORTING README
+do
+ mail -s $i $req < $i
+ echo "Done sending $i to $req."
+done
+
+cd ./test
+i=test.tex
+mail -s $i $req < $i
+echo "Done sending $i to $req."
+
+cd ../doc
+i=makeindex.l
+mail -s $i $req < $i
+echo "Done sending $i to $req."
+
+cd ../src
+for i in *
+do
+ mail -s $i $req < $i
+ echo "Done sending $i to $req."
+done