Tagged Questions

0
votes
2answers
27 views

Ruby Sinatra - Add custom routes for files in Public folders.

Hi, I've a Sinatra app which would be used by different clients. I wish to show the client's Company Logo and a custom layout.erb for each client. The code base is essentially s …
0
votes
1answer
55 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
16 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
0answers
57 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
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 …
1
vote
0answers
118 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
59 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
107 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
47 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
1answer
75 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 …
2
votes
1answer
23 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
8answers
260 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
56 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 …
0
votes
1answer
61 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
2answers
62 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 2 3 4 next
15 30 50 per page