mirror of
https://github.com/inAudible-NG/tables.git
synced 2025-12-06 02:11:58 +01:00
11 lines
150 B
Bash
11 lines
150 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# ./demo.sh <sha1 checksum>
|
||
|
|
# 00112233
|
||
|
|
|
||
|
|
pattern='hex:'
|
||
|
|
|
||
|
|
cd `dirname $0`
|
||
|
|
|
||
|
|
./rcrack . -h $1 | grep $pattern | awk -F $pattern '{print $2}'
|