On Mar 18 2016, Isaac Aymerich <[email protected]> wrote:
> Hi,
>
> Exist any way to use s3qlcp for fast copy but only file to file?
Not directly, but you could use a simple script along the lines of:
#!/bin/sh
temp_src=`mktemp -d -p .`
temp_dst=`mktemp -u -p .`
ln "$1" "${temp_src}/$1"
s3qlcp "${temp_src}" "${temp_dst}"
mv "${temp_dst}/$1" .
rmdir "${temp_dst}"
Best,
-Nikolaus
--
GPG encrypted emails preferred. Key id: 0xD113FCAC3C4E599F
Fingerprint: ED31 791B 2C5C 1613 AF38 8B8A D113 FCAC 3C4E 599F
»Time flies like an arrow, fruit flies like a Banana.«
--
You received this message because you are subscribed to the Google Groups
"s3ql" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.