1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#!/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