#!/usr/bin/perl -wforeach $patt (@ARGV) { # Check for no digit. if ($patt =~ /\D/) { print "\tFound non-digit in \"$patt\".\n"; }}