Skip to content

Instantly share code, notes, and snippets.

@MHenderson
Last active August 25, 2017 00:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MHenderson/78888e6d1a0fe057eee6 to your computer and use it in GitHub Desktop.
Save MHenderson/78888e6d1a0fe057eee6 to your computer and use it in GitHub Desktop.
Convert graphs from DIMACS to DOT format.
#!/bin/bash
echo 'graph{'
sed -r -e '/^[cp]/d'\
-e 's/[ae] ([0-9]+)\s([0-9]+)/ \1 -- \2;/g'\
$1
echo '}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment