scp

SCP for C#

Is there a library that provides the ability to do SCP transfers in C#? ...

scp file not setting correct owner

Does SCP have a problem setting file permissions or have I misconfiguration my server? Updated (19/Mar/09): Actually: There is no problem - I have just misunderstood the way permissions work - they don't change when the file contents are changed Use case: There is a file on a server that I want to edit called "importantFile.txt". The ...

Errors when using the SCP client from SharpSSH

I am using SharpSSH (http://sharpssh2.codeplex.com/) to send files from a windows box(using C#) to a linux box. I use the Sftp class to create directories(mkdir command) and Sftp.put command to transfer files over to the Linux machine. When the number of concurrent users is large about 30 or more then the connections being to drop and t...

Check whether a path exists on a remote host using paramiko

Paramiko's SFTPClient apparently does not have an exists method. This is my current implementation: def rexists(sftp, path): """os.path.exists for paramiko's SCP object """ try: sftp.stat(path) except IOError, e: if 'No such file' in str(e): return False raise else: return ...

Transferring files from AIX batch to Windows batch

The responses to my previous question suggested SSIS as the most efficient and reliable way to get files from AIX into SQL Server. I agree that it's probably a good idea. But for the sake of understanding the other options better, I'd like to narrow the scope a little bit. Irrespective of what I plan to do with the files, how can I dete...

can i know abt the exit status of the scp command in unix

while doing the programing in perl with scp command i am stucked with facing the exit status of scp command if you tell which exit value(other then 0-success,1-error) is for what my life will be simple ...

Copying remote file to a specified path on local desktop using scp

I was trying to copy a file from remote server using SCP but its giving the following error. bash-3.2$ scp username@server:main.php C:\main.php ssh: Could not resolve hostname C: hostname nor servname provided, or not known Its assuming C: as hostname but its just the drive name..Please let me how to specify explicitly like some esca...

How can I check if scp is available?

For my system I have to know whether I can do SCP (with or without transfering a file) with a particular number of systems in the network repeatedly. We may not transfer files but we have to know how we can do SCP without giving a password. ...

How can I detect if scp service is available at remote host with out sending the file?

Could you please suggest a way to detect if the scp service is available on a server without the need for an account and/or password? I am trying to figure out how to tell if Net::SCP->new( "hostname", "username" ); function fails to connect to remote because of service is unavailable at remote host or because of authentication fai...

Object Oriented C++ library for ssh and scp

Is there any Object Oriented C++ library for ssh and scp. BSD license would be preferred. I could find libssh and libssh2. But these are all procedural. ...

How to find tty from which a particular cmd "scp" is executed

How can I find out who executed a particular command and which terminal was used to run it? Original: how can i know particular cmd is executed by whom and to know about my terminal ...

How can I determine if scp is available from Perl?

In Net::SCP at which point do I need DSC or RSA keys (i.e when do I use the get or put functions)?. I would like to know the scp service is available without transferring the file. ...

how to scp across servers using bash?

Is it doable? ...

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 ./ expect "Password: " send "myPassword" When I run this, it still prompts for "Password", what is wrong? ...

how to use shell script search directory pattern remotely

I need to use scp update some directory at another server. It is similar to for i in /usr/some/???/unknown/dir do cp /usr/some/file $i done so how can i do the search while the destination directories are on other server? thank you ...

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/unknown/number/of/sub/folders/me.class the problem is, there are many other useless files such as .svn-base files that i don't want. how can i filter them so I only ...

scp -r ... but leave out (exclude) a specified subdirectory

Here's the directory structure: /a/ /a/b/ /a/c/ I want to copy everything, EXCEPT for the /a/c/ subdirectory. scp -rp myserver:/a . # this will copy everything Q: How would I specify a directory to leave out in the scp command ? ...

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 want it to be placed in on the remote server function upload { scp $1 [email protected]:$2 } As you may/may not know, if the directory I specify wh...

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 specify . Ill specify the password within the script, so that i dont have to enter it for each file. Is there a way to do this ? Thank You ...

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 I'm connecting to the instance the script is prompted with "Are you sure you want to continue connecting (yes/no)?" since the authenticity of the host is not k...