Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save darth-veitcher/8e7e76246433e9c02067547c98517f7e to your computer and use it in GitHub Desktop.
Save darth-veitcher/8e7e76246433e9c02067547c98517f7e to your computer and use it in GitHub Desktop.
Bash iterate file and split lines
while read listing; do words=( $listing ); echo wget -O ${words[0]} \"${words[1]}\"; done < test.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment