Tenth Line

Jun 5, 2016


##leetcode 195 ```bash cnt=0 ou=’’ while read line do cnt=$[cnt + 1] if [ $cnt -eq 10 ]; then ou=$line break fi done < file.txt echo $ou