diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2006-12-29 21:48:56 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2006-12-29 21:48:56 +0000 |
commit | 787140069bce6bd65d25c492553c9ef7b8900b39 (patch) | |
tree | a82f8c6e1ad52984e57601f14317f10b5090e083 /web | |
parent | 369b99513df8280d6092fca5db6f89a3755d869b (diff) | |
download | pandoc-787140069bce6bd65d25c492553c9ef7b8900b39.tar.gz |
Print command-line to stderr when making demo page.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@317 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'web')
-rw-r--r-- | web/mkdemos.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/mkdemos.sh b/web/mkdemos.sh index e33c464f8..f612ffc35 100644 --- a/web/mkdemos.sh +++ b/web/mkdemos.sh @@ -42,7 +42,7 @@ for command in "$@"; do input=$(echo $command | sed -e 's/.* \([^ ]*\) -o.*/\1/') output=$(echo $command | sed -e 's/.*-o \(.*\)/\1/') echo "1. <code>$firstpart <a href=\""$input"\" title=\""View input file"\">$input</a> -o <a href=\""$output"\" title=\""View pandoc output"\">$output</a></code>" + echo $command >&2 result=$($command) # run the command and create output file - echo "Created $output." >&2 done |