About 1,210,000 results
Open links in new tab
  1. scp - Write bash function which operates on list of filenames

    Feb 11, 2015 · Tangentially, you may want to look into the ssh ControlMaster option, which can be used to multiplex ssh connections. This would remove much of the overhead of using one …

  2. How do I copy a folder from remote to local using scp? [closed]

    How do I copy a folder from remote to local host using scp? I use ssh to log in to my server. Then, I would like to copy the remote folder foo to local /home/user/Desktop. How do I achieve this?

  3. Using Putty/plink to scp to a named pipe - Unix & Linux Stack …

    The problem is that the user that does the scp only has write permissions on its ~ and /tmp folders, neither of which is big enough to accept the file. Therefore, I would like to use a …

  4. scp - Shell script: shorten or aliasing an address after a command ...

    Oct 20, 2014 · I want to abbreviate or set an alias to a destination address every time I use while copying files. For example, scp <myfile> my_destination where my_destination could be …

  5. Download by scp with net connection problem - Unix & Linux …

    Jul 9, 2019 · Download by scp with net connection problem Ask Question Asked 5 years, 7 months ago Modified 5 years, 7 months ago

  6. scp to AWS EC2 permission denied - Stack Overflow

    Sep 25, 2021 · I am very new to AWS ec2, using linux, and using scp commands, just to get that out of the way. I have an AWS ec2 instance set up and want to upload a python file to that …

  7. scp from Linux to Windows - Stack Overflow

    19 You could use something like the following scp -r linux_username@linux_address:path/to/file path/to/local/directory This will copy file to the specified local directory on the system you are …

  8. scp: illegal option -- 0 - Unix & Linux Stack Exchange

    Jun 22, 2017 · 8 The switch for setting a port in scp is an upper-case -P -P port Specifies the port to connect to on the remote host. Note that this option is written with a capital ‘P’, because -p …

  9. scp with port number specified - Stack Overflow

    Unlike ssh, scp uses the uppercase P switch to set the port instead of the lowercase p: scp -P 80 ... # Use port 80 to bypass the firewall, instead of the scp default The lowercase p switch is …

  10. scp - Copy over ssh and execute commands in one session - Unix …

    Let's say it contains the commands to stop and start your service, as well as a call to scp the files you need. You can execute this script on the remote server without copying it to the remote …