aboutsummaryrefslogtreecommitdiff
path: root/identify
blob: 93f8586051193618550bab3108703eeb900366d5 (plain)
1
2
3
4
5
6
7
8
#!/bin/bash
if [[ $# != 1 ]]; then
  echo >&2 "Usage: $0 path/to/libc.so"
  exit 2
fi
libc=$1
sha1=`sha1sum $libc`
sha1sum db/*.so | grep $sha1