0
votes
0answers
45 views
SCP from one external server to another [closed]
I am trying to a SCP on my local server that copies a file from one remote server to another remote server (Both remote servers use a custom port (xxxx)
I am trying:
scp -r -P xx …
0
votes
3answers
61 views
How do I ensure that a username/password combination is not read from memory
How do I ensure that a username/password combination is not read from memory while my application is in use.
My program is a GUI wrapper for some CYGWIN tools, including SSH and S …
1
vote
0answers
112 views
How to copy /etc/hosts to all my machines? [closed]
import os, sys, time
servers = ['dev','admin','db1']
for s in servers:
cmd = 'scp /etc/hosts regular_user@%s:/etc/hosts' % s
print cmd
os.system(cmd)
I have written …
1
vote
2answers
47 views
Moving a git repo to another server
I have a git clone/repo on a development server, but I am now moving to another one. I don't want to commit all my local branches and changes to the main repository, so how can I m …
0
votes
0answers
41 views
How using ssh/scp between non-public machines [closed]
I am often in the following situation:
I have two machines, A and B, which are on LANs, and have non-public IP addresses. Machine C is on the same LAN as B, but publicly visible. …
0
votes
3answers
49 views
Using Ruby and SCP/SSH, how to determine if a file exists before uploading a copy
I'm uploading a file to a remote server using SCP, but what's the proper way of seeing if that file exists before doing so?
0
votes
0answers
48 views
cURL php extension for windows with SCP and SFTP support
I switched over to zendserver(VS8 php(5.3) binaries), and now curl(7.19.4) seems to be lacking SCP and SFTP protocol support(verified by errors and phpinfo). Curl itself is install …
1
vote
8answers
200 views
How to respond to password prompt when using SCP in a shell script?
First of all, I am well aware of that there are many of questions regarding this topic. I have read them, but still could figure out an appropriate answer for my situation.
I woul …
0
votes
1answer
46 views
scp-ing without replacing folder
How do I scp an entire folder into a folder of the same name without replacing the content in the destination folder? (instead, I would like to add to the contents of the destinati …
2
votes
1answer
20 views
scp on WebClient class in .Net
I have a project already written using .Net's WebClient class. It works great for FTP and WebDAV resources, but how can I get it to work with SCP or SFTP?
1
vote
3answers
402 views
Automate scp file transfer using a shell script
Hello,
I have some n number of files in a directory on my unix system . Is there a way to write a shellscript that will transfer all those files via scp to a remote system, i spec …
0
votes
2answers
58 views
Non-interactive scp
I'm creating a bash script to create new EC2 instances and then upload a file once the instance is created. I'm using scp to upload the file, however, since this is the first time …
1
vote
3answers
199 views
How do I create a directory on remote host if it doesn’t exist without ssh-ing in?
I'm not sure if this is possible or not,
Basically, I'm writing a script that allows me to scp a file to my hosting. This is it so far. Arg 1 is the file and arg 2 is the folder i …
0
votes
4answers
273 views
Using ‘expect’ to automatically send in password
I am trying to copy a file from my remote server to my local. Here's my script to run it, by using 'expect' to automaticlally send in password
scp user@host:/folder/myFile ./
expe …
1
vote
5answers
238 views
How to filter files when using scp to copy dir recursively?
I need to copy all the .class files from server to local with all dir reserved. e.g. server:/usr/some/unknown/number/of/sub/folders/me.class will be /usr/project/backup/some/unknow …
