Skip to content

Instantly share code, notes, and snippets.

@brenes
Created June 15, 2014 16:26
Show Gist options
  • Select an option

  • Save brenes/d3796aafdeb489c60f7e to your computer and use it in GitHub Desktop.

Select an option

Save brenes/d3796aafdeb489c60f7e to your computer and use it in GitHub Desktop.
Copying various files through scp, one connection at a time
for filename in *; do
scp "$filename" user@host:/folder;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment