linux shell awk sed 截取需要的内容
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
需求:
BMS-test-portlet-020000-G-1001.war
这个输出BMS-test-portlet
linux shell:
ll | awk '{print $9}' | sed 's/\-020000.*//g'
BMS-test-portlet
完成输出。
解释:
ll 将输出的结果作为 awk 的输入,awk截取第9列的值后将结果作为sed的输入,sed模式匹配掉所有的\-020000.* 输出结果。
也可将结果保存到某个文件中,在后面加 >文件名称。
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 年前
更多推荐
已为社区贡献8条内容
所有评论(0)