#!/bin/sh if [ "$1" = -v ]; then opt_v="$1" shift fi if [ "$1" = --perl ]; then opt_perl="$1" shift fi for i in $*; do echo "File: $i" ../monitor-parse-edid $opt_v $opt_perl $i perl -le 'print "#" x 80' done