Last active
August 29, 2015 14:06
-
-
Save sangheestyle/ea8687f4d76f6ed31a14 to your computer and use it in GitHub Desktop.
Run SSSP
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 | |
| mkdir sssp | |
| cd sssp | |
| curl "https://dl.dropboxusercontent.com/u/7571776/facebook100_txt_only.zip" -o "facebook100_txt_only.zip" | |
| unzip facebook100_txt_only.zip | |
| curl https://gist.githubusercontent.com/sangheestyle/6335b209b4779dddc5ac/raw/47a803d6ccfa727efb80d5c32f5e7361d32c861a/ps16c.py > ps16c.py | |
| mkdir out | |
| python ps16c.py facebook100txt $1 $2 | |
| cd .. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Snippet
So