Linux的shell script】的更多相关文章

从2005年开始,做了将近10年的系统维护,先是做网络接入管理,然后做网络安全与审计,然后做服务器管理等整个网络系统的运营管理:现在又兼着做一些Linux下的视频监控系统的软硬件维护.过程中遇到太多重复性任务,比如终端用户的管理策略下发(日志大小空间大小设置.服务启用.网络NetBIOS设置.USB设备检查.时间服务设置.补丁升级以及IPSec策略下发),Linux下的iptables及常规服务安装等,必须借助脚本来实现.当然用起来效果会相当的好,把手动10来分钟的任务使用脚本在不到1分钟就完成…
Linux的shell script //编辑shell: vi a.sh //子进程运行shell sh a.sh //主线程运行shell source a.sh 相关例子: #!/bin/bash echo "hello linux!" #!/bin/bash echo "我要创建三个文件" read -p "请输入文件名:" fileuser #防止任意输入 分析文件名是否输入为空 filename=${fileuser:-"f…
Shell调试篇 sh [-nvx] scripts.sh -n:不要执行script,仅查询语法的问题: -v:在执行script前,先将script的内容输出到屏幕上: -x:将使用到的script内容显示到屏幕上,这是很有效的参数. 检查语法 -n选项只做语法检查,而不执行脚本. sh -n script_name.sh 启动调试 sh -x script_name.sh 进入调试模式后,Shell依次执行读入的语句,产生的输出中有的带加号,有的不带,如下.带加号表示该条语句是Shell执…
p { margin-bottom: 0.25cm; line-height: 120% } (一)首先来看什么是变量,在shell中打印出变量采用的是echo $path或者echo ${path}的方式 比如打印出当前系统路径变量就采用echo $PATH的方式 root@zhf-linux:/home/zhf# echo $PATH p { margin-bottom: 0.25cm; line-height: 120% } /usr/local/sbin:/usr/local/bin:/…
(一)首先来看shell脚本的执行方式,shell脚本的后缀名都是sh文件. 1 sh test.sh 2 source test.sh 这两种方式有什么区别呢.test.sh 里的脚本很简单, 从键盘输入名字后赋值个name变量 read -p “Please input your name:” name 执行如下 root@zhf-linux:/home/zhf/zhf/shell_prj# sh test1.sh please input your name:zhf root@zhf-li…
package com.haiyisoft.hyoaPc.ui; import java.io.BufferedReader;import java.io.IOException;import java.io.InputStream;import java.io.InputStreamReader;import java.io.UnsupportedEncodingException; import org.apache.commons.lang.StringUtils; import ch.e…
source: http://linoxide.com/linux-shell-script/shell-script-check-linux-system-health/ This article introduces a shell script to perform linux system health check.This script collects system information and status like hostname, kernel version, uptim…
Shell script for logging cpu and memory usage of a Linux process http://www.unix.com/shell-programming-and-scripting/223177-shell-script-logging-cpu-memory-usage-linux-process.html…
本文介绍下,学习shell script编程的入门知识,通过几个入门实例,带领大家走进shell script的神圣殿堂,呵呵,有需要的朋友参考下. 本文转自:http://www.jbxue.com/article/13302.html linux基础之Shell Script 1 Shell Scipt 使用指令和基本程序设计结构写成的程序,可以完成复杂的处理流程 1.1 程序书写 复制代码代码如下: #!/bin/bash # Program: #       This program s…
一.shell script Shell 脚本(shell script),是一种为shell编写的脚本程序.业界所说的shell通常都是指shell脚本,但读者朋友要知道,shell和shell script是两个不同的概念. 1. 新建一个shell脚本hw.sh 扩展名并不影响脚本执行,只是方便表示文件类型 "#!" 是一个约定的标记,它告诉系统这个脚本需要什么解释器来执行,即使用哪一种Shell. 2. shell脚本的执行 a:作为可执行程序 ./hw.sh 注意,一定要写成…