概述
请编写一个标准Shell脚本testd,实现如下功能:
A、在Linux操作系统启动的时候,自动加载/mnt/test/test程序。 B、当test异常退出之后,自动重新启动。
C、当test程序重启次数超过100次,自动复位操作系统。 假设你所拥有的资源:
A、目标机器是一台具有标准shell的嵌入式计算机,CPU为ARM7 56MB,内存16MB,软件环境基于Linux2.6.11和BusyBox1.2构建。
B、当前已有11个用户进程在运行,占用了大部分的CPU时间和内存,你可使用的内存只有2MB左右,CPU时间由系统分派。
e.g:
#!/bin/sh
#load *.so that may need
if [ -r /sbin/ldconfig ]; then
ldconfig
fi
#add the libs PATH that may need
export LD_LIBRARY_PATH = '/lib'
#count the testd run time
count = 0
#main loop
while [1] do
#add excute attribute for mnt/test/test
chmod +x /mnt/test/test
#run test
/mnt/test/test
let count = count + 1
echo "test running time is $count"
#running time to 100?
if ["$count" -eq 100]; then
echo "will reboot now"
reboot
fi
#waiting for test stop
sleep 3
done
最后
以上就是懦弱火龙果为你收集整理的SH脚本实例的全部内容,希望文章能够帮你解决SH脚本实例所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复