Skip to content

Instantly share code, notes, and snippets.

@imduffy15
Created August 28, 2013 23:29
Show Gist options
  • Select an option

  • Save imduffy15/6372651 to your computer and use it in GitHub Desktop.

Select an option

Save imduffy15/6372651 to your computer and use it in GitHub Desktop.
#!/bin/bash
IFS="\n"
lines=`cat urls.txt`
count=0
for line in $lines
do
qrencode -d 1024 -s 15 -l L -o $count.png $line
count=count+1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment