金牌会员
0
12
338
编写一个bash脚本以输出一个文本文件nowcoder.txt中第5行的内容。
示例: 假设 nowcoder.txt 内容如下:
welcome to nowcoder this is shell code
你的脚本应当输出: is
收藏0回复 显示全部楼层 道具 举报
#!/bin/bash line=1 while read value do if [ $line -eq 5 ] then echo $value fi ((line++)) done < nowcoder.txt
回复 显示全部楼层 道具 举报
发表回复
|Archiver|手机版|小黑屋|生信人 ( 萌ICP备20244422号 )
GMT+8, 2024-12-28 17:25 , Processed in 0.090358 second(s), 33 queries .
Powered by Discuz! X3.5
© 2001-2024 Discuz! Team.