#!/bin/bash if [[ -f "$1" ]]; then if file -bi "$1" | grep "^image/" &>/dev/null; then OUTPUT="$(zbarimg -q "$1" | grep "^QR-Code:")" if [[ $? -eq 0 ]]; then echo "$OUTPUT" | tail -c+9 exit fi fi fi qrencode -t UTF8 $@