The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #3 (permalink)  
Old 01-07-2009
Yogesh Sawant's Avatar
Yogesh Sawant Yogesh Sawant is offline Forum Staff  
Part Time Moderator and Full Time Dad
  
 

Join Date: Sep 2006
Location: Rossem, Tazenda
Posts: 1,086
using awk:
Code:
awk -F '|' '{ if($1 !~ /^[0-9]*$/) { print $1 " is not numeric in " $0; }  if($2 !~/^[a-zA-Z]*$/) { print $2 " is not alphabetic in " $0 } }' filename