LeetCode-195

 Tenth Line

shell编程

#!/bin/bash
lines=0
while read -r line
do
    let lines=lines+1
    if(($lines == 10));then
        echo "$line"
    fi 
done<file.txt

  从file.txt中读数据,echo输出到控制台

while...do...done是bash中的语法结构

posted @ 2017-03-15 21:17  世人谓我恋长安  阅读(210)  评论(0编辑  收藏  举报