wildcard"*"号的用法
2013-04-20*经常在命令中作为通配符(Wildcard)使用,在其他地方也经常作为通配符使用。
1、通配符(Wildcard)
dir *
ls *.txt
2、乘法
c=a*b
3、Bash shell $*为参数列表中各个参数
例1:
for str in $* ;do{
var=$(echo $str | bc 2>/dev/null)
if ["$var" != "$str" ]
then {
echo "$str not is a number"
}
done
例2:l.sh
#!/bin/bash
ls -lrt $*
执行l.sh /opt /home
4、case语句结尾,代表其他一切
case "$1" in
start)
start
;;
stop)
stop
;;
status)
status $prog
;;
restart)
restart
;;
reload)
reload
;;
condrestart)
condrestart
;;
*)
echo $"Usage: $0 {start|stop|status|restart|condrestart|reload}"
RETVAL=1
esac
例如上一个工作日:
#!/bin/sh
week=`date +%w`
case "$week" in
0)
last_work_day=`date -d -2day`
;;
1)
last_work_day=`date -d -3day`
;;
*)
last_work_day=`date -d -1day`
;;
esac
echo $last_work_day
5、注释
/* content */
6、crontab中*表示所有时间
* * * * * cmd
7、dns配置中,配置域名之外其他一切域名访问
* A 192.168.0.1
分类:Linux | 标签: command |相关日志
- nagios4.3.4升级4.4.1
- centos7配置网络nmcli无法使用
- Linux下怎么查看16进制文件
- shell中获得当前用户名
- nagios 4.08配置步骤
- awk和sed实例
- linux查看当前使用的shell
- wget同步FTP
- date -d
- CentOS配置vsftpd
- iperf3测带宽质量
- "tar --exclude"
- base64
- tar – 复制目录及文件
- shell Cli Shortcuts
- Windows快捷键
- windows sc command
- Displays the UUID of a computer
- history记录添加时间戳
- dstat
- getent
- lastb命令
- set -o vi
- Linpack and Flops
- grep几个小技巧
- Linux Swap ,add ,delete and move
- Sed的常用命令语法 (6)
- linux命令行自动补齐 (6)
- !$
- 回车符和换行符区别 (1)
- 监控工具nmon (1)
- awk to print all row to one line (8)
- reg命令给windows添加环境变量 (2)
- 统计文件行数的命令 (1)
- linux历史命令 (1)
- linux命令行TAB自动补全功能 (9)
- tar命令实例 (1)
- linux常用命令 (6)
- expr命令实例 (1)
- cut命令实例 (1)
- Linux下chkconfig命令详解 (1)
- vi或sed的批量替换 (1)
- xargs命令实例 (3)
- grep 用正则表达式实例 (2)
- linux add swap by file (1)
- sed-grep-awk (1)