0
votes
1answer
51 views
Periodically backup files to another server via scp
There are set of log files that have a pattern xxxxxYYY where xxxx -> some text and YYY is a sequence number increasing sequentially by one and wrapping around. Only the last n num …
0
votes
1answer
14 views
Scp locate’s output by Xargs
I want to make a list of files of locate's output.
I want scp to take the list.
I am not sure about the syntax.
My attempt with pseudo-code
locate labra | xargs scp {} masi@11.1 …
0
votes
3answers
66 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 …
0
votes
0answers
55 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 …
1
vote
0answers
115 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
54 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
3answers
96 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
44 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
0answers
69 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
247 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
55 views
netbeans - scp after build
Hi
I'd like to copy a file to a remote server with scp after building, using Netbeans.
What I do now manually is:
Clean and Build Main Project
scp dist/project.jar login@dest/. …
0
votes
1answer
54 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 …
1
vote
3answers
477 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 …
2
votes
1answer
22 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?
0
votes
2answers
60 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 …
