The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 10-09-2007
robotronic's Avatar
robotronic robotronic is offline
Can I play with madness?
 

Join Date: Apr 2002
Location: Italy
Posts: 370
On Solaris you can use:

Code:
echo "12345678" | /usr/xpg4/bin/grep -Eq "^[0-9]{8}$"
In any case, you must use a tool which supports extended regular expressions to use the above regex.
Reply With Quote