- 论坛徽章:
- 0
|
本帖最后由 janusle 于 2010-08-15 09:16 编辑
前两天一直在打工 昨天晚上才开始做
今天是deadline 现在我有了一点小小的雏形
- #!/bin/sh
- dic='/home'
- core_name='core'
- find="find $dic -name $core_name -print"
- for f in `$find`; do
- core=`file $f | grep "core file"`
- if [ "$core" != "" ]; then
- # echo $core
- core_dic="`echo $core | awk -F : '{print $1}'`"
- echo $core_dic
- core_program="`echo $core | awk '{print substr($NF,2,length($NF)-2)}'`"
- echo $core_program
- fi
- done
复制代码 我的下一个问题是 作业要求 删除的core必须是由 /bin, /sbin, /usr/bin, and
/usr/sbin产生的 我现在可以抓出 core由哪个程序产生 但是 如何得知 这个程序
是否在上述目录中or not呢?
大虾们 指点方向吧
另外 我的测试机器是一台sunOS 我依照前面几位的指引 没有找到core_pattern 我尝试find过
也没有找到 谁知道 它在哪个目录里面呢? |
|