Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'monodoc/Monodoc.Ecma/jay/jay.sh')
-rw-r--r--monodoc/Monodoc.Ecma/jay/jay.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/monodoc/Monodoc.Ecma/jay/jay.sh b/monodoc/Monodoc.Ecma/jay/jay.sh
new file mode 100644
index 00000000..6df0eb52
--- /dev/null
+++ b/monodoc/Monodoc.Ecma/jay/jay.sh
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+TOPDIR=$1
+INPUT=$2
+OUTPUT=$3
+FLAGS=$4
+
+TEMPFILE=`mktemp jay-tmp.XXXXXX` || exit 1
+
+$TOPDIR/jay/jay $FLAGS < $TOPDIR/jay/skeleton.cs $INPUT > $TEMPFILE && mv $TEMPFILE $OUTPUT