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