dysfunkshun2020 / terminal-ide

Automatically exported from code.google.com/p/terminal-ide
0 stars 0 forks source link

no scp support in busybox installaton #28

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Try to use scp to copy a file to remote computer.  No scp binary or link to 
comparable binary exists. 
2.
3.

What is the expected output? What do you see instead?

scp not found.
Scp should execute and copy a file via ssh to a remote machine.

What version of the product are you using? On what operating system?

v1.95 Android.

Please provide any additional information below.

Not sure if it's possible but if so can you add the ability to scp files out of 
the terminal as this is often  faster and more preferable way than loading up a 
file manager for simple transfers.

Original issue reported on code.google.com by Arkay1...@gmail.com on 5 Feb 2012 at 8:15

GoogleCodeExporter commented 8 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

GoogleCodeExporter commented 8 years ago
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

GoogleCodeExporter commented 8 years ago
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

GoogleCodeExporter commented 8 years ago
I submit that standard ftp would be nice too.

Original comment by CoreyJJo...@gmail.com on 18 Feb 2012 at 7:29

GoogleCodeExporter commented 8 years ago
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

GoogleCodeExporter commented 8 years ago
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

GoogleCodeExporter commented 8 years ago
tar should works too.

Original comment by obj...@gmail.com on 23 Jun 2013 at 10:04

GoogleCodeExporter commented 8 years ago
scp would still be useful...

Original comment by marius.h...@gmail.com on 11 Nov 2013 at 8:59

GoogleCodeExporter commented 8 years ago
+1, I'm waiting for scp and ssh-agent

Thanks,
Gabriel.

Original comment by gabriel....@gmail.com on 11 Nov 2013 at 9:04

GoogleCodeExporter commented 8 years ago
+1 for scp!

Original comment by arnauldvm on 4 May 2014 at 7:17