linux、SMART、Shell的学习】的更多相关文章

linux body { font-family: Helvetica, arial, sans-serif; font-size: 14px; line-height: 1.6; padding-top: 10px; padding-bottom: 10px; background-color: white; padding: 30px; } body > *:first-child { margin-top: 0 !important; } body > *:last-child { ma…
1.Shell学习 1.什么是Shell    shell是一个命令解析器,在操作系统的最外层,负责和用户对话,将用户的输入解释给操作系统,并处理各种各样的操作系统的输出结果.2.什么是shell脚本    当命令捉着语句不在命令行执行,而是通过一个程序文件执行的时候,改程序就是shell程序.3.需要注意的是ishell是包含命令,变量,流行和控制语句的脚本4.Shell脚本擅长处理纯文本类型的数据,    Rsync Nfs Crond Ssh key 基础命令 Apache Mysql P…
优秀的DEMO cat /etc/init.d/functions   -->里面有颜色定义cat /etc/rc.d/rc.sysinit cat /etc/init.d/nfscat /etc/init.d/portmap cat /etc/init.d/httpd 0. function文件 # -*-Shell-script-*- # # functions This file contains functions to be used by most or all # shell sc…
在Linux系统中,虽然有各种各样的图形化接口工具,但是sell仍然是一个非常灵活的工具.Shell不仅仅是命令的收集,而且是一门非常棒的编程语言.您可以通过使用shell使大量的任务自动化,shell特别擅长系统管理任务,尤其适合那些易用性.可维护性和便携性比效率更重要的任务.  下面,让我们一起来看看shell是如何工作的: 1. 建立一个脚本 Linux中有好多中不同的shell,但是通常我们使用bash (bourne again shell) 进行shell编程,因为bash是免费的并…
0. 查看帮助(比如内置功能)    man bash    -->变量处理大全 1.-计算变量长度的不同方法及不同方法的耗时对比    尽可能的用内置的命令处理,速度快        time for i in $(seq 1111);do count=${#char};done;2.场景的变量数值计算    0.$(())  let  expr  bc  $[]    1.(())的使用:只需要将特定的算术运算表达式用$(())括起  -->效率高        echo $((1+2*2…
#!/bin/bash echo 'hello' your_name='longxiong' echo $your_name echo ${your_name} for i in `ls /opt`; do echo ${i} done str=" echo ${#str} unset str echo ${str} echo "执行的脚本为$0" echo "第一个参数$1" echo "第二个参数为$2" echo "参数…
1.16条常用的命令 .文件的权限修改:(把文件1.txt的归属改为mysql的,然后ll查看) chown mysql:mysql .txt .增加当前用户的x权限,然后ll查看: chomd u+x .txt .对比文件的差异: diff .txt .txt .查询文件位置: find ./ -name .txt .杀掉进程 kill - .杀掉test用户下面的所有进程: ps -ef | awk .查看时间: date .查看当前用户 id .查看当前主机信息 uname -a .使用r…
1. vim /etc/init.d/nginx 2. chmod 755 /etc/init.d/nginx 3. service nginx status #!/bin/bash # nginx Startup script for the Nginx HTTP Server # it is v.0.0.2 version. # chkconfig: - 85 15 # description: Nginx is a high-performance web and proxy server…
此文包含脚本服务请求,字符串截取,文件读写内容,打印内容换行. #!/bin/bashretMsg="";while read LINEdo        echo "this is text: $LINE";        retMsg=`/usr/bin/curl -o test3.log -w %{http_code}"\\n"  $LINE`; #http请求, 响应内容写文件以及响应状态码        echo "Retut…
轻松学习Linux之Shell文件和目录属性详解 轻松学习Linux之理解Sitcky 轻松学习Linux之理解umask 轻松学习Linux之理解SUID&SGUID 本系列多媒体教程已完成的博文: 1.轻松学习Linux之VI编辑器的使用 2.轻松学习Linux之AWK使用初步 3.轻松学习Linux之理解Shell的硬链接与软连接 4.轻松学习Linux之自动执行任务 5.轻松学习Linux系统安装篇之fdisk命令行工具的使用  6.轻松学Linux之使用转义字符 7.轻松学习Linux…