#!/bin/bash

for f in $@ ; do

	scp -i myAmiTestKey.pem $f ubuntu@`cat host.txt`:/home/ubuntu
done
