/usr/bin/Fpurge is in ferret-vis 6.9.3-4build1.
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
# Fpurge
# remove all but the current version of the indicated file(s)
. /usr/share/ferret-vis/bin/ferret_paths
# example usage: Fpurge metafile.plt
# no argument given: explain the ropes
if [ $# -ne "1" ]; then
echo '*** Syntax error - name 1 filename as template, only ***'
echo ' Usage: Fpurge filename.extension'
echo 'Example: Fpurge ferret.jnl'
exit
fi
rm "$1".~*~
|