Extract all lines from a file starting with some sequence and then output it to another file
Try this with GNU sed:
sed -n '/^BIHAR/p' file > new_file
or with grep:
grep '^BIHAR' file > new_file
or with awk:
awk '/^BIHAR/' file > new_file