/usr/bin/bomstrip-files is in bomstrip 9-10.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #!/bin/sh
#
# Written by Peter Pentchev in 2008.
# This file is hereby placed into the public domain.
set -e
[ -z "$BOMSTRIP" ] && BOMSTRIP=/usr/bin/bomstrip
if [ "$#" -eq 0 ]; then
echo 'Usage: bomstrip-files file...' 1>&2
exit 1
fi
while [ "$#" -ne 0 ]; do
cp "$1" "$1.bom"
$BOMSTRIP < "$1.bom" > "$1"
shift
done
|