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

bash script /proc/partitions取字串問題

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

    本文导语:  cat /proc/partitions major minor  #blocks  name    3     0  160086528 hda    3     1   10482381 hda1    3     2   10482412 hda2    3     3   10482412 hda3    3     4  128632455 hda4    3    64  312571224 hdb  ...

cat /proc/partitions
major minor  #blocks  name

   3     0  160086528 hda
   3     1   10482381 hda1
   3     2   10482412 hda2
   3     3   10482412 hda3
   3     4  128632455 hda4
   3    64  312571224 hdb
   3    65  312568641 hdb1

如果要取出hda2的blocks ,10482412 該怎樣下指令呢
cat /proc/partitions|grep hda2|???

|
awk '/hda2/ {print $3}' /proc/partitions

|
cat /proc/partitions|grep hda2| tr -s " " | cut -d" " -f4

|
awk 'if($NR=3) {print $4 }' /proc/partitions

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












  • 相关文章推荐
  • linux bash shell命令:grep文本搜索工具简介
  • . ./.bash_file 与 ./.bash_file的区别?
  • linux bash shell命令:文本搜索工具grep中用于egrep和 grep -E的元字符扩展集
  • 为什么每次启动bash都出现bash:test:a:binary operaotr expected
  • linux bash shell命令:文本搜索工具Grep命令选项及实例
  • linux RHEL 5.6 在root用户下. .bash_profile 或source .bash_profile 报错
  • linux bash shell命令:文本搜索工具grep正则表达式元字符集(基本集)
  • Ubuntu中如何配置shell(bash)的环境
  • 如何在ubunt下面安装两个bash
  • bash 不能使用括号,求助
  • 如何在redhat下安装bash?
  • bash和Korn shell学哪个比较好
  • 请问root的bash的环境变量放在哪个文件中啊?
  • linux(redhat9)中在哪里设环境变量,.bash_profil在哪里啊?
  • BASH Debugger
  • .bashrc和.bash_profile有什么区别
  • . /root/.bash_profile
  • Bash架构问题
  • bash的控制终端
  • bash 与shell 什么关系?
  • -bash-3.2# Argument list too long 到底是怎么回事呀?


  • 站内导航:


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

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

    浙ICP备11055608号-3