Skip to content

Instantly share code, notes, and snippets.

@sunnycmf
Created February 28, 2015 08:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sunnycmf/9f7f37fa5c571b38dff8 to your computer and use it in GitHub Desktop.
Save sunnycmf/9f7f37fa5c571b38dff8 to your computer and use it in GitHub Desktop.
bash script read file line by line
#!/bin/bash
while read line
do
name=$line
echo "http://stageadmin.passpub.com/push/$name"
done < $1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment