More cleanup
[hashcat.git] / tools / test.sh
index 301e6ba..dd7ac28 100755 (executable)
@@ -1537,10 +1537,6 @@ OPTIONS:
         'all'    => all attack modes
         (int)    => attack mode integer code (default : 0)
 
-  -b    Select binary :
-        'amd'    => oclHashcat64.bin (default)
-        'nvidia' => cudaHashcat64.bin
-
   -x    Select cpu architecture :
         '32'     => 32 bit architecture
         '64'     => 64 bit architecture (default)
@@ -1612,18 +1608,6 @@ while getopts "t:m:a:b:hcpd:x:o:" opt; do
       fi
       ;;
 
-    "b")
-      if [ ${OPTARG} == "amd" ]; then
-        BIN="oclHashcat64.bin"
-        BN="amd"
-      elif [ ${OPTARG} == "nvidia" ]; then
-        BIN="cudaHashcat64.bin"
-        BN="nvidia"
-      else
-        usage
-      fi
-      ;;
-
     "c")
       OPTS="${OPTS} --markov-disable"
       MARKOV="disabled"