SHELL4 输出第5行的内容


描述编写一个bash脚本以输出一个文本文件nowcoder.txt中第5行的内容。示例:假设 nowcoder.txt 内容如下:welcometonowcoderthisisshellcode你的脚本应当输出:is#!/bin/bashlet j=0for i in `cat nowcod

SHELL2 打印文件的最后5行


描述查看日志的时候,经常会从文件的末尾往前查看,请你写一个bash shell脚本以输出一个文本文件nowcoder.txt中的最后5行。示例:假设 nowcoder.txt 内容如下:#include<iostream>using namespace std;int main(){in

SHELL3 输出 0 到 500 中 7 的倍数


写一个 bash脚本以输出数字 0 到 500 中 7 的倍数(0 7 14 21…)的命令#!/bin/bashfor i in {0..500..7}; do echo "$i"done

SHELL1 统计文件的行数

shell 

描述编写一个shell脚本以输出一个文本文件nowcoder.txt中的行数示例:假设 nowcoder.txt 内容如下:#include <iostream>using namespace std;int main(){ int a = 10; int b = 100;