View Single Post

  #2 (permalink)  
Old 05-11-2008, 08:35 PM
nixcraft's Avatar
nixcraft nixcraft is offline
Never say die
User
 
Join Date: Jan 2005
Location: BIOS
My distro: Ubuntu
Posts: 1,035
Rep Power: 10
nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute nixcraft has a reputation beyond repute
Default

Try grep command
Code:
grep -e '^9000232' /path/to/file
A sample script:
Code:
#!/bin/bash
number=$1
FILE="/path/to/file"
if [ $# -eq 0 ]
then
   echo "$0 number"
   exit 1
fi

if [ ! -f $FILE ]
then
   echo "$FILE - not a file"
   exit 2
fi
grep -e "^${number}" ${FILE}
__________________
Vivek | My personal blog
Linux Evangelist
Play hard stay cool
Reply With Quote