博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Daily Shell(3)
阅读量:4954 次
发布时间:2019-06-12

本文共 787 字,大约阅读时间需要 2 分钟。

#!/bin/bash: list all users.PASSWORD_FILE=/etc/passwdn=1for name in $(awk 'BEGIN{FS=":"}{print $1}' < "$PASSWORD_FILE" )do        echo "USER #$n = $name"        let "n+=1"doneexit $?
#!/bin/bash# bin-grep.sh: locates matching strings in a binary file.E_BADARGS=65E_NOFILE=66if [ $# -ne 2 ]then        echo "Usage: `basename $0` search_string filename"        exit $E_BADARGSfiif [ ! -f "$2" ]then        echo "File \"$2\" does not exit."        exit $E_NOFILEfiIFS=$'\012'for word in $( strings "$2" | grep "$1" )        # the "strings" command lists strings in binary files.        # output then piped to "grep", which tests for desired string.do        echo $worddoneexit 0
posted on
2012-09-20 00:58 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/coanor/archive/2012/09/20/2694556.html

你可能感兴趣的文章
js实现考试随机选题
查看>>
异步上传图片到另外一台服务器
查看>>
part 2: decorator装饰器
查看>>
stm32-独立按键
查看>>
PostGIS之路——几何对象输出函数
查看>>
JS之表单提交时编码类型enctype详解
查看>>
JS 禁用和重新启用a标签的点击事件
查看>>
51nod1256乘法逆元
查看>>
工作总结07
查看>>
C/C++宏定义交换两个值
查看>>
了解jmeter
查看>>
借用一下放下歌
查看>>
将字母拆分
查看>>
未能在sysindexes中找到数据库ID11中对象ID1的索引ID1对应的行,请对sysindexes运行...
查看>>
VMware Integrated OpenStack (VIO)简介
查看>>
params简介
查看>>
实战 ASP.NET Web API
查看>>
数据库优化,性能分析
查看>>
保留小数点二位
查看>>
visio画图ER图表和字段注释
查看>>