/usr/bin/cphist is in atfs 1.4pl6-11.
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 | #!/bin/sh
#$__copyright$
#
# Author: Juergen Nickelsen (Juergen.Nickelsen@cs.tu-berlin.de)
#
# $Header: cphist.sh[3.1] Wed Jan 26 16:25:55 1994 andy@cs.tu-berlin.de frozen $
#
# copy a history to another directory
myself=`basename $0`
if [ $# != 2 ] ; then
echo Usage: $myself history-name destination-dir 1>&2
exit 1
fi
tar cf - ./AtFS/Data/"$1" ./AtFS/Attr/"$1" | (cd "$2"; tar xof -; atfsrepair -q "$1")
|