Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/sh
- file=$1
- key=~/mission/RU-BYOL.pem
- host=ec2-18-212-169-167.compute-1.amazonaws.com
- echo "Utilizing $file"
- while IFS= read -r line
- do
- echo "Current Line Utilized $line"
- scp -i $key $line ubuntu@$host:
- done < "$file"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement