You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
354 B
7 lines
354 B
#!/bin/sh
|
|
# This script should work under both Linux and macOS. Either way, the
|
|
# strings command is required. Under Linux, you'll probably find it in the
|
|
# binutils package. Under macOS, you'll need either full Xcode or the
|
|
# Xcode Command Line Tools.
|
|
strings - "$1" | fgrep -A1 PrelinkBundlePath |
|
|
sed -n -e 's@^.*<string>@@' -e 's@</string>.*@@p'
|