File show_signatures.sh of Package shim
13
1
2
# show signatures on a PE binary
3
set -e
4
5
infile="$1"
6
7
if [ -z "$infile" -o ! -e "$infile" ]; then
8
echo "USAGE: $0 file.efi"
9
exit 1
10
fi
11
12
pesign -S -i "$infile"
13
# show signatures on a PE binary
set -e
infile="$1"
if [ -z "$infile" -o ! -e "$infile" ]; then
echo "USAGE: $0 file.efi"
exit 1
fi
pesign -S -i "$infile"