Last active
December 20, 2015 16:19
-
-
Save x684867/6160336 to your computer and use it in GitHub Desktop.
wrapper script for keyspaceGen.rb ...cause doing it the Linux way is yielding much better results. Imagine if I wrote keyspaceGen in C?
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 | |
| # | |
| # keyspace-slicer | |
| # (c) 2013 Sam Caldwell. Public Domain | |
| # | |
| # Wrapper script for keyspaceGen.rb | |
| # | |
| for n in $(seq 32 1 127); do | |
| ./keyspaceGen.rb /opt/ 32 127 16 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 $n > /dev/null & | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment