#!/bin/bash
for i in `cat nowcoder.txt`
do
    if [ `echo $i |wc -L` -lt 8 ];then
    echo $i
    fi
done