#!/bin/bash

while read line;do
    isBb=$(echo $line | grep [bB] | wc -l)
    if [ $isBb -eq 0 ];then
        echo "$line"
    fi
done