1,编写shell脚本,计算1~100的和。 #! /bin/bashsum=0foriin`seq1100`;dosum=$[$i+$sum]doneecho$sum 2,编写shell脚本,输入一个数字n并计算1~n的和。 要求:如果输入的数字小于1,则重新输入,直到输入正确的数字为止。 #! /bin/bash read-p"input number:"nsum=0;for((i=0;i<=$n;i++))dosu...
1、找出/proc/meminfo文件中以s开头的行,至少用三种方式忽略大小写 egrep -i '^s' /proc/meminfo awk '/^[sS]/' /proc/meminfo sed -nr '/^[sS]/p' /proc/meminfo 1. 2. 3. 2、显示当前系统上的root,centos或者user的信息 egrep '^(root|user|centos)' /etc/passwd 1. 3、找出/etc/init.d...
六、用case语句在/etc/init.d/目录中写一个firewalld脚本,并加入到系统服务管理中(#chkconfig: 2345 99 20) 使能够用 service firewalld start|stop|restart|status 来管理firewalld服务, 要求如果命令选项不对,则提示"用法:$0 {start|stop|restart|status}"。
1、 编写脚本,求100以内所有正奇数之和 [root@magedu ~]# vim whilesum.sh !/bin/sh sum=0 i=1 while [ $i -le 100 ];do let sum=sum+i let i=i+2 done echo $sum 2、 编写脚本, 提⽰请输⼊⽹络地址,如192.168.0.0,判断输⼊的⽹ 段中主机 在线状态,并统计在线和离线主机各多少 [...
shell脚本编程基础 1、编写脚本/root/bin/systeminfo.sh,显⽰当前主机系统信息,包括主机名,IPv4地址,操作系统版本,内核 版本, CPU型号,内存⼤⼩,硬盘⼤⼩ [root@magedu ~]# vim sysinfo.sh #!/bin/bash ipv4=`ifconfig |egrep -o "\<([1-9]|[1-9][0-9]|1[0-9]{2}|2[01][0-9...
四、编程题请编写一个Shell脚本,实现以下功能:- 输入一个整数,判断该数是否为偶数。- 若为偶数,输出"Even number";若为奇数,输出"Odd number"。答:#!/bin/bashecho "Please enter an integer: "read numif ((num % 2 == 0)); thenecho "Even number"elseecho "Odd number"fi
编写一个Shell 脚本,计算100 以内不是5 整数倍的数字的和.(编程题)#!/bin/bashi=1sum=0while [i -le 100];doif [[i%
简介:RHCE的一道shell脚本编程题&理解shell case 语法 RHCE的一道题: 要求: 当运行 /root/script foo,输出为 bar 当运行 /root/script bar,输出为 foo 当没有任何参数或者参数不是 foo 或者 bar时, 其错误输出产生以下的信息: /root/script foo|bar ...
linux shell脚本编程问题,提示too many argumentsecho "enter a directory name:"read aif [ –d a –a –w a ]then files_deleted=0files_remaining=0for c in `ls a`doecho "wish to delete file c?"read ansif [ ans = 'y' ]then
【题目】文件内容合并用shell脚本编程新建两个日志文件log1和 log_2 ,将log1的全部内容和log2的最后五行下入到一个新建文件中;用tail命令实现