mirror of https://gitee.com/bigwinds/arangodb
9 lines
285 B
Bash
Executable File
9 lines
285 B
Bash
Executable File
#!/bin/sh
|
|
echo "generating /tmp/allExamples.html"
|
|
(printf "<html><head></head><body><pre>\n";
|
|
for thisExample in Documentation/Examples/*.generated; do
|
|
printf "<hr>\n<h3>$thisExample</h3>\n";
|
|
cat $thisExample;
|
|
done;
|
|
printf "</pre></body></html>") > /tmp/allExamples.html
|