Regular Expression Perl

#!/usr/bin/perl -w
foreach $patt (@ARGV) {
    # Check for white space.
    if ($patt =~ /\s/) {
        print "\tFound white space in \"$patt\".\n";
    }
}