⚛Do what i want.⚛
描述 编写一个bash脚本以输出一个文本文件nowcoder.txt中第5行的内容。
示例: 假设 nowcoder.txt 内容如下: welcome to nowcoder this is shell code 你的脚本应当输出: is
#!/bin/bash let j=0 for i in `cat nowcoder.txt` do if [ $j -eq 4 ];then echo $i fi let j++ done