diff options
Diffstat (limited to '')
-rw-r--r-- | bashrc/common/alias.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bashrc/common/alias.sh b/bashrc/common/alias.sh index c1e9b6b..5d73269 100644 --- a/bashrc/common/alias.sh +++ b/bashrc/common/alias.sh @@ -34,6 +34,14 @@ mkcd() { mkdir -p $1 && cd $1 } +# encode files suitable for copy&paste into other terminals +copy() { + STR=$(tar cj $@ | perl -MMIME::Base64 -e 'print MIME::Base64::encode(join("", <>))' - ; exit $PIPESTATUS) || return $? + echo "cat << E=O=F | perl -MMIME::Base64 -e 'print MIME::Base64::decode(join(\"\", <>))' - | tar xj" + echo "$STR" + echo "E=O=F" +} + # create tarball of one directory mktar() { [[ -z "$1" ]] && return 1 |