用 shell 抠取文本中指定内容
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
如下图所示,想要抠出红色矩形标出的数字“3092”并赋值给变量,用Linux Shell 一行即可解决。
要将抠出的数字“3092”赋值给指定变量“MarkerNum”,可用如下方式解决:
MarkerNum=`grep "markers to be included" plink.log|awk '{print $1}'`
同样的,想要抠出位于行尾的数字“2016”,并赋值给变量“MarkerNum”,可用以下方式解决:
MarkerNum=`grep “Analysis started:" plink.log |awk '{print $NF}'`
同样的方法,可以解决类似的问题,巧妙搭配 grep 和 awk即可很方便地实现。
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献6条内容
所有评论(0)