给一个字符指定一个数组怎么显示数组a=1echo $a1a=(1 2 3 4)echo $a1echo ${a[@]}1 2 3 4echo ${a[*]}1 2 3 4指定显示数组中第几个数字echo ${a[0]}1echo ${a[2]}3echo ${a[3]}4echo ${a[4]} 空...
分类:
编程语言 时间:
2016-01-03 00:45:07
阅读次数:
210
break continue exit break 结束本次for循环写个for循环脚本vim for2.sh#!/bin/bash##for i in `seq 1 5`do echo $iif [ $i -eq 4 ]then breakfiecho $idone...
分类:
系统相关 时间:
2016-01-03 00:43:13
阅读次数:
184
逻辑判断的格式vim case.sh#!/bin/bashread -p "please input a number:" nm=$[$n%2]case $m in 1) echo " It is a jishu'" ;; ...
分类:
系统相关 时间:
2016-01-02 12:07:05
阅读次数:
182
date命令是显示日期时间的命令date2016年 01月 01日 星期五 15:05:01 CST修改时间的选项是 -sdate -s "2016-01-01 12:56:10"查看日历cal全年日历cal -y同步服务器的时间yum install ntp -yntpdate ntp.fudan...
分类:
系统相关 时间:
2016-01-01 22:56:32
阅读次数:
274
逻辑判断vim if.sh#!/bin/bash####a=5if [ $a -gt 3 ]then echo "a>3"fish if.sha>3vim if2.sh#!/bin/bash####a=5if [ $a -gt 3 ]then echo "a>3"fiif [ $a -gt ...
分类:
系统相关 时间:
2016-01-01 22:49:05
阅读次数:
297
创建一个shell脚本mkdir shellvim first.sh#!/bin/bash##The first test shell script.##Written by wangshaojun.ls /tmp/echo "my home is $HOME"echo "This is first...
分类:
系统相关 时间:
2016-01-01 14:48:37
阅读次数:
193
Shell编程进阶Shell结构以及执行[root@wangchao~]#mkdirshell[root@wangchao~]#cdshell/[root@wangchaoshell]#vimfirst.sh#!/bin/bash##Thefirsttestshellscript##writtenbywangchaols/tmp/echo"Thisisthefirstscript."[root@wangchaoshell]#bashfirst.sh//执行脚本[root@wangc..
分类:
系统相关 时间:
2015-07-30 02:17:50
阅读次数:
356
新的一年,希望大家技术飞速提升!快来看哦!
第一节:基础
ls -lh ——可以用户友好的方式看到文件大小
file 文件名 ——查看文件类型
stat 文件名 ——查看文件当前状态
man 命令/函数名 ——查看详细的帮助文档
man中看某一命令选项的定位技巧 —— 输入/ -n -n前面要有一定的空格
#!/bin/bash
echo “Hello World!”
chmod 777 hello.sh或chmo...
分类:
系统相关 时间:
2015-01-01 12:33:38
阅读次数:
291