#!/bin/bash
cat list.txt | while read NAME; do
   qrencode -s 15 -l L "http://www.mlab.cz/PermaLink/$NAME" -o "./$NAME-QRcode.png"
done