String search and return value from column

Dear All

I had below mention file as my input file.

87980457        Jan 12 2008  2:00AM           1          60 BSC1         
81164713        Jan 12 2008  3:00AM           1          60 BSC2
78084521        Jan 12 2008  4:00AM           1          60 BSC3          
68385193        Jan 12 2008  5:00AM           1          60 BSC4          
85883305        Jan 12 2008  6:00AM           1          60 BSC5          
75069865        Jan 12 2008  7:00AM           1          60 BSC6

Now i want to search BSC4 word in that file and if it match in file then i want to take its date from same file mention in left side.

I.E. If BSC4 match then it should returen Jan 12 2008 5:00AM from same file.

Sugest me possible way.

Regards
jaydeep

$ awk '/BSC4/ {print $2,$3,$4,$5}' jaydeep.out
Jan 12 2008 5:00AM

#/bin/ksh

read value?"Enter the value to search for: "

awk -v val=$value '$8 == val  { printf("%s %s %s %s\n", $2, $3, $4, $5) }' infile
awk '/BSC4/{$1=$6=$7=$NF="";print}' "file"