diff options
-rwxr-xr-x | bashrc/bin/copy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bashrc/bin/copy b/bashrc/bin/copy index 80ab385..68d10ca 100755 --- a/bashrc/bin/copy +++ b/bashrc/bin/copy @@ -8,7 +8,7 @@ if [[ -z "$1" ]] ; then fi # encode files suitable for copy&paste into other terminals -STR=$(tar cjf - $@ | base64; exit $PIPESTATUS) || exit $? +STR=$(tar cjf - "$@" | base64; exit $PIPESTATUS) || exit $? echo "cat << E=O=F | base64 -d | tar xj" echo "$STR" echo "E=O=F" |