热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

LinuxShell输出命令实例

文章标题:LinuxShell输出命令实例。Linux是中国IT实验室的一个技术频道。包含桌面应用,Linux系统管理,内核研究,嵌入式系统和开源等一些基本分类

  [root@root 2009521]# cat shell

  mma7450 0-001d: reg0x00:        000     0x00

  mma7450 0-001d: reg0x01:        000     0x00

  mma7450 0-001d: reg0x02:        000     0x00

  mma7450 0-001d: reg0x03:        000     0x00

  mma7450 0-001d: reg0x04:        000     0x00

  mma7450 0-001d: reg0x05:        000     0x00

  mma7450 0-001d: reg0x06:        000     0x00

  mma7450 0-001d: reg0x07:        000     0x00

  mma7450 0-001d: reg0x08:        000     0x00

  mma7450 0-001d: reg0x09:        000     0x00

  mma7450 0-001d: reg0x0a:        000     0x00

  head命令

  [root@root 2009521]# head -n 4 shell

  mma7450 0-001d: reg0x00:        000     0x00

  mma7450 0-001d: reg0x01:        000     0x00

  mma7450 0-001d: reg0x02:        000     0x00

  mma7450 0-001d: reg0x03:        000     0x00

  [root@root 2009521]# head -4 shell

  mma7450 0-001d: reg0x00:        000     0x00

  mma7450 0-001d: reg0x01:        000     0x00

  mma7450 0-001d: reg0x02:        000     0x00

  mma7450 0-001d: reg0x03:        000     0x00

  诸如此类的命令:tail

  grep 的使用

  [root@root 2009521]# grep -n 'reg0x0[0-3]' shell

  1:mma7450 0-001d: reg0x00:        000     0x00

  2:mma7450 0-001d: reg0x01:        000     0x00

  3:mma7450 0-001d: reg0x02:        000     0x00

  4:mma7450 0-001d: reg0x03:        000     0x00

  awk的使用

  [root@root 2009521]# awk '/reg0x0[0-3]/' shell

  mma7450 0-001d: reg0x00:        000     0x00

  mma7450 0-001d: reg0x01:        000     0x00

  mma7450 0-001d: reg0x02:        000     0x00

  mma7450 0-001d: reg0x03:        000     0x00

  [root@root 2009521]# awk '{if($3~/reg0x0[0-3]:/)print $0;}' shell

  mma7450 0-001d: reg0x00:        000     0x00

  mma7450 0-001d: reg0x01:        000     0x00

  mma7450 0-001d: reg0x02:        000     0x00

  mma7450 0-001d: reg0x03:        000     0x00

  [root@root 2009521]# awk '$3=="reg0x03:"{print $0}' shell

  mma7450 0-001d: reg0x03:        000     0x00

  [root@root 2009521]# awk '$3=="reg0x03:"' shell

  mma7450 0-001d: reg0x03:        000     0x00

[1] [2] 下一页


推荐阅读
author-avatar
Lovely_Janle
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有