Skip to content

Instantly share code, notes, and snippets.

@dietmarw
Created December 20, 2011 09:44
Show Gist options
  • Save dietmarw/1500980 to your computer and use it in GitHub Desktop.
Save dietmarw/1500980 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
# Script to create a "Modelica" ready version of the Grammar.html
echo 'readFile("Grammar.html");' > /tmp/a.mos
omc $* /tmp/a.mos > Grammar.mo
# remove first line
sed '1d;3d' -i Grammar.mo
sed -e s#h1\>#h4\>#g -i Grammar.mo
sed -e s#h2\>#h5\>#g -i Grammar.mo
rm /tmp/a.mos
@dietmarw
Copy link
Author

OK the last change solved it. ; was the key

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment