当前位置:  技术问答>linux和unix

帮我看段脚本啊

    来源: 互联网  发布时间:2016-08-06

    本文导语:  以下脚本是在sunos中写的,我看不懂什么意思,帮我翻译下啊,大概翻翻就行 #!/bin/sh # Copyright (c) 1993 by Sun Microsystems, Inc. #ident  "@(#)nfsfind.sh 1.7     00/07/17 SMI" # # Check shared NFS filesystems for .nfs* files that ...

以下脚本是在sunos中写的,我看不懂什么意思,帮我翻译下啊,大概翻翻就行
#!/bin/sh
# Copyright (c) 1993 by Sun Microsystems, Inc.

#ident  "@(#)nfsfind.sh 1.7     00/07/17 SMI"
#
# Check shared NFS filesystems for .nfs* files that 
# are more than a week old.
#
# These files are created by NFS clients when an open file
# is removed. To preserve some semblance of Unix semantics
# the client renames the file to a unique name so that the
# file appears to have been removed from the directory, but
# is still usable by the process that has the file open.

if [ ! -s /etc/dfs/sharetab ]; then exit ; fi

# Get all NFS filesystems exported with read-write permission.

DIRS=`/usr/bin/nawk '($3 != "nfs") { next }
        ($4 ~ /^rw$|^rw,|^rw=|,rw,|,rw=|,rw$/) { print $1; next }
        ($4 !~ /^ro$|^ro,|^ro=|,ro,|,ro=|,ro$/) { print $1 }' /etc/dfs/sharetab`

for dir in $DIRS
do
        find $dir -type f -name .nfs* -mtime +7 -mount -exec rm -f {} ;
done

|
DIRS=`/usr/bin/nawk '($3 != "nfs") { next } 
        ($4 ~ /^rw$|^rw,|^rw=|,rw,|,rw=|,rw$/) { print $1; next } 
        ($4 !~ /^ro$|^ro,|^ro=|,ro,|,ro=|,ro$/) { print $1 }' /etc/dfs/sharetab` 
//用nawk一行一行的处理
//1:($3 != "nfs") { next }  如果该行第3域不是nfs 则直接跳到下一行 如果是nfs则执行2
//2:1成立才执行,($4 ~ /^rw$|^rw,|^rw=|,rw,|,rw=|,rw$/) { print $1; next }  匹配第4域是rw  或者以rw,开头 或者以rw=开头 或者含,rw,  或者包含,rw=  或者以,rw结尾 则输出第一域(print $1)  然后直接跳到下一行
//3: 1成立,2不成立(没有匹配到),执行($4 !~ /^ro$|^ro,|^ro=|,ro,|,ro=|,ro$/)  匹配第4域不是ro  或者不以ro,开头 或者不以ro=开头 或者不含,ro,   或者不包含,ro=  或者不以,ro结尾 则输出第一域 (print $1)  然后跳到下一行

    
 
 

您可能感兴趣的文章:

 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 红帽redhat下通过脚本和yum安装docker容器引擎的详细步骤
  • 脚本1调用脚本2,脚本2必须输入回车,如何在调用过程中自动输入回车
  • HTML 脚本语言介绍及<script>标签用法
  • 脚本中如何调用另外的一个脚本?
  • 脚本调用脚本出异常
  • shell 脚本中命令别名在脚本外无法使用
  • 想用shell脚本定时执行另一个脚本
  • shell脚本问题 关于父脚本和子脚本的问题
  • centos系统运行脚本,显示bash进程,能否以脚本名字显示?
  • 求救:修改系统启动脚本 不过脚本里面误写了阻塞命令
  • 如何传递参数给linux shell 脚本(当脚本从标准输入而不是从文件获取时)
  • 定时跑脚本编译C文件就报错,手动跑脚本就编译成功了.
  • 脚本如何自动输入密码??交互式脚本如何编写?
  • 请问在 LINUX下如何编辑脚本(可以直接运行脚本访问WINDOW系统)
  • 请问在脚本里怎么得到一个程序运行的返回值,脚本怎么返回值?
  • C语言调用shell脚本后,通过何种方法能获取脚本中变量的值
  • 请教一个问题,CRONTAB执行脚本和SSH登陆后调用脚本有什么不同?
  • windows上脚本调用UNIX的脚本
  • shell脚本如何调用另外一个shell脚本的函数?
  • 急救!关于Shell脚本删除过期文件的问题,Shell脚本达人乱入
  • 如何给shell脚本加密,脚本中有密码。最好是比较直接的,不要说让用 shc


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3