Open GoogleCodeExporter opened 9 years ago
Dunno why this got added as priority medium (first time I've used this system),
so call it low priority with no hurry ;) and thanks for adding the escape on
back button functionality!.
I'm going to take a look at the source to see what's involved. If there's
anything I can do I'll submit a patch instead of a request!. Cheers.
Original comment by Arkay1...@gmail.com
on 5 Feb 2012 at 8:18
I know scp is pretty versatile, but if you're just looking for a quick copy of
a single file, i wrote up this script to get me by for now, putting it in
~/bin/scp and making it executable. Main caveat is you need to explicitly type
out filenames
if [[ "$2" == *:* ]]; then
IFS=':' read -ra ARR <<< "$2"
dd if="$1" | ssh "${ARR[0]}" dd of="${ARR[1]}"
fi
if [[ "$1" == *:* ]]; then
IFS=':' read -ra ARR <<< "$1"
ssh "${ARR[0]}" dd if="${ARR[1]}" | dd of="$2"
fi
Original comment by dan...@dasa.cc
on 7 Feb 2012 at 4:02
This could be very useful to add scp for the next version.
Original comment by morgan.f...@gmail.com
on 9 Feb 2012 at 11:15
I submit that standard ftp would be nice too.
Original comment by CoreyJJo...@gmail.com
on 18 Feb 2012 at 7:29
Y'all are aware that there is rsync? It should be a sufficient relacement for
scp.
Original comment by luca.ing...@gmail.com
on 24 Mar 2012 at 6:24
Yup, use rsync instead of scp. If You don't know how read the tutorial that is
available in Term IDE or pdf that is available in downloads tab.
Original comment by lsiwinski
on 14 May 2012 at 11:21
tar should works too.
Original comment by obj...@gmail.com
on 23 Jun 2013 at 10:04
scp would still be useful...
Original comment by marius.h...@gmail.com
on 11 Nov 2013 at 8:59
+1, I'm waiting for scp and ssh-agent
Thanks,
Gabriel.
Original comment by gabriel....@gmail.com
on 11 Nov 2013 at 9:04
+1 for scp!
Original comment by arnauldvm
on 4 May 2014 at 7:17
Original issue reported on code.google.com by
Arkay1...@gmail.com
on 5 Feb 2012 at 8:15