#!/bin/bash

while read line
do
    [ "$line" != "" ] && echo $line
done < nowcoder.txt
exit 0