免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2508 | 回复: 2
打印 上一主题 下一主题

shell脚步学习--1.检索系统脚本 “冒号:什么意思” [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-05-16 22:23 |只看该作者 |倒序浏览
本帖最后由 maojian60 于 2012-05-16 22:54 编辑

刚开始学习shell,学习了一些基础
但是实践少,想找些实例,网络上实例不是很多,其实linux系统本身就有很多经典而且实用的shell实例
gogoogogo
检索 系统脚本  分析并学习
  1. #! /bin/bash
  2. #USE:test the program is shell script or binary files
  3. #DATE:2012-05-16
  4. #BY:60

  5. : ${1?"Usage: $0 need a canshu "} #参数替换,如果$1被设使用$1,否则打印错误消息     #不过“:”的含义是什么????????????

  6. DIRS=`du -a  $1|awk '{print $2}'`
  7. echo "below is shell script:"
  8. for j in $DIRS

  9. do

  10.         if  [ -d $j ];then
  11.                 let 'a+=1'

  12.         else
  13.                 let 'b+=1'
  14.                 if file $j |grep shell >/dev/null 2>&1 ;then
  15.                         let 'c+=1'
  16.                         echo $c : $j
  17.                 fi

  18.         fi
  19. done
  20. 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

论坛徽章:
1
辰龙
日期:2014-05-22 11:38:58
2 [报告]
发表于 2012-05-16 23:18 |只看该作者
  1. :
  2. null command [colon]. This is the shell equivalent of a "NOP" (no op, a do-nothing operation). It
  3. may be considered a synonym for the shell builtin true. The ":" command is itself a Bash builtin, and
  4. its exit status is true (0).
复制代码
  1. : ${username=`whoami`}
  2. # ${username=`whoami`} Gives an error without the leading :
  3. # unless "username" is a command or builtin...
  4. : ${1?"Usage: $0 ARGUMENT"} # From "usage-message.sh example script.
复制代码
  1. find /sbin/ | xargs file | grep 'shell script'
复制代码

论坛徽章:
3
2015年辞旧岁徽章
日期:2015-03-03 16:54:152015年迎新春徽章
日期:2015-03-04 09:51:162015年亚洲杯之阿曼
日期:2015-04-07 20:00:59
3 [报告]
发表于 2012-05-17 09:57 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP