|
@@ -0,0 +1,29 @@
|
|
|
|
+package QuickVerifyCrap;
|
|
|
|
+
|
|
|
|
+import java.io.FileNotFoundException;
|
|
|
|
+import java.io.FileOutputStream;
|
|
|
|
+import java.io.PrintStream;
|
|
|
|
+
|
|
|
|
+public class SuperToothPuller {
|
|
|
|
+ public static void main(String[] args) throws FileNotFoundException {
|
|
|
|
+ try(PrintStream puller = new PrintStream(new FileOutputStream("Q:\\LOA\\000013\\supertoothpuller.missingIDs.txt")))
|
|
|
|
+ {
|
|
|
|
+ char[] hexer = "0123456789ABCDEF".toCharArray();
|
|
|
|
+ for(int i=0;i<16;i++)
|
|
|
|
+ {
|
|
|
|
+ for(int j=0;j<16;j++)
|
|
|
|
+ {
|
|
|
|
+ for(int k=0;k<16;k++)
|
|
|
|
+ {
|
|
|
|
+ for(int l=0;l<16;l++)
|
|
|
|
+ {
|
|
|
|
+ String id = new String(new char[]{hexer[i],hexer[j],hexer[k],hexer[l]});
|
|
|
|
+ puller.println("wget www.supertooth.net/Download/Firmwares/"+id+".txt");
|
|
|
|
+ puller.println("wget www.supertooth.net/Download/Firmwares/"+id.toLowerCase()+".txt");
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|