Created
June 15, 2014 16:26
-
-
Save brenes/d3796aafdeb489c60f7e to your computer and use it in GitHub Desktop.
Copying various files through scp, one connection at a time
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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