diff options
author | Niklas Baumstark <niklas.baumstark@gmail.com> | 2015-08-28 17:49:47 +0200 |
---|---|---|
committer | Niklas Baumstark <niklas.baumstark@gmail.com> | 2015-08-28 17:49:47 +0200 |
commit | 1e4ed99b82147f20996efb38e8a73d3bd3c87928 (patch) | |
tree | f8b0e778d2dd039280f856fe5ad9421eadd078c0 /identify | |
parent | fce5732e5541a21c7f1ca2478b4dceb52152823d (diff) | |
parent | 513988e0f29d4412c15a8bc1249c26bf7a9c07ba (diff) | |
download | libc-database-1e4ed99b82147f20996efb38e8a73d3bd3c87928.tar.gz libc-database-1e4ed99b82147f20996efb38e8a73d3bd3c87928.zip |
Merge pull request #1 from ykram/master
Fix identify matching against binaries
Diffstat (limited to 'identify')
-rwxr-xr-x | identify | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,4 +5,4 @@ if [[ $# != 1 ]]; then fi libc=$1 sha1=`sha1sum $libc` -sha1sum db/*.so | grep $sha1 +sha1sum db/*.so | grep `echo $sha1 | awk '{print $1 }'` |