/usr/bin/xclip-copyfile is in xclip 0.12+svn84-4+b1.
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 20 21 22 | #!/bin/sh
set -e
if [ "x$1" = "x" ]; then
echo "Usage: [options] $0 file..." >&2
echo "-p Copy path information; preserve tree structure"
exit 1
fi
archive=`mktemp` || exit 1
trap 'rm -f "${archive}"' 1 2 3 15
if [ "x$1" = "x-p" ]; then
tar cf "${archive}" "$@"
else
flags="cf"
for file in "$@"; do
filedir=`dirname "${file}"`
filename=`basename "${file}"`
tar "${flags}" "${archive}" -C "${filedir}" "${filename}"
flags="rf"
done
fi
gzip -c "${archive}" | xclip -selection secondary -loops 1 -i
rm "${archive}"
|