#!/usr/bin/env bash if [[ -z "$1" ]] ; then echo "Usage:" echo -en "\t" echo "$(basename $0) " 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"