summaryrefslogtreecommitdiffstats
path: root/bin/copy
blob: 68d10caec33487b596fc3be7eea720f2bab6abbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env bash

if [[ -z "$1" ]] ; then
	echo "Usage:"
	echo -en "\t"
	echo "$(basename $0) <files/directories>"
	exit 1
fi

# encode files suitable for copy&paste into other terminals
STR=$(tar cjf - "$@" | base64; exit $PIPESTATUS) || exit $?
echo "cat << E=O=F | base64 -d | tar xj"
echo "$STR"
echo "E=O=F"