#! /usr/bin/env bash
 
########################################################
#
#
########################################################
function solution_1() {
    grep 'www.baidu.com' nowcoder.txt | grep ' 404 ' | wc -l
}

########################################################
#
#
########################################################
function solution_2() {
    awk '{
       if ($0 ~ '/www.baidu.com/' && $9 = 404 ) a++
    } END {
        print a
    }' nowcoder.txt
}

solution_2