Last active
August 25, 2017 00:44
-
-
Save MHenderson/78888e6d1a0fe057eee6 to your computer and use it in GitHub Desktop.
Convert graphs from DIMACS to DOT format.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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