/usr/bin/xclip-cutfile is in xclip 0.12-1.
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 | #!/bin/sh
# FIXME: We shouldn't remove the files until xclip has successfully
# transferred the data. With the current process model, this is not
# very easy, though.
set -e
if [ "x$1" = "x" ]; then
echo "Usage: [options] $0 file..." >&2
echo "-p Copy path information; preserve tree structure"
exit 1
fi
xclip-copyfile "$@"
if [ "x$1" = "x-p" ]; then
shift
fi
rm "$@"
|