- 论坛徽章:
- 0
|
本帖最后由 maojian60 于 2012-05-16 22:54 编辑
刚开始学习shell,学习了一些基础
但是实践少,想找些实例,网络上实例不是很多,其实linux系统本身就有很多经典而且实用的shell实例
gogoogogo
检索 系统脚本 分析并学习- #! /bin/bash
- #USE:test the program is shell script or binary files
- #DATE:2012-05-16
- #BY:60
- : ${1?"Usage: $0 need a canshu "} #参数替换,如果$1被设使用$1,否则打印错误消息 #不过“:”的含义是什么????????????
- DIRS=`du -a $1|awk '{print $2}'`
- echo "below is shell script:"
- for j in $DIRS
- do
- if [ -d $j ];then
- let 'a+=1'
- else
- let 'b+=1'
- if file $j |grep shell >/dev/null 2>&1 ;then
- let 'c+=1'
- echo $c : $j
- fi
- fi
- done
- echo "there are ${a=0} dirs,${b=0} files,${c=0} shell script" #参数替换,如果a被set,则为a的值,否则为0
复制代码 下面是/sbin 的系统脚本
[root@maojian share]# ./shell.sh /sbin
below is shell script:
1 : /sbin/pppoe-stop
2 : /sbin/sushell
3 : /sbin/fixfiles
4 : /sbin/lsinitrd
5 : /sbin/ifcfg
6 : /sbin/vgimportclone
7 : /sbin/mpathconf
8 : /sbin/setregdomain
9 : /sbin/fsck.xfs
10 : /sbin/service
11 : /sbin/pppoe-connect
12 : /sbin/mkinitrd
13 : /sbin/grub-terminfo
14 : /sbin/ifup
15 : /sbin/start_udev
16 : /sbin/pppoe-start
17 : /sbin/installkernel
18 : /sbin/dracut
19 : /sbin/grub-md5-crypt
20 : /sbin/lvmconf
21 : /sbin/setsysfont
22 : /sbin/lvmdump
23 : /sbin/new-memtest-pkg
24 : /sbin/pppoe-status
25 : /sbin/grub-install
26 : /sbin/cbq
27 : /sbin/pppoe-setup
28 : /sbin/new-kernel-pkg
29 : /sbin/fsadm
30 : /sbin/dhclient-script
31 : /sbin/weak-modules
32 : /sbin/mount.tmpfs
33 : /sbin/ifdown
there are 1 dirs,283 files,33 shell script
|
|