码迷,mamicode.com
首页 > 系统相关 > 详细

shell把字符串中的字母去掉,只保留数字

时间:2020-02-19 00:33:09      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:显示文件   dig   去掉   kvm   shell   span   cat   txt   保留   

1 编辑测试文件

[root@hz-kvm cephdisk3]# cat > 1.txt <<EOF
> 120Tib
> EOF

2 显示文件
[root@hz-kvm cephdisk3]# cat 1.txt
120Tib

3 过滤字母到其他文件
[root@hz-kvm cephdisk3]# cat 1.txt | tr -d "a-zA-Z" > 2.txt
[root@hz-kvm cephdisk3]# cat 2.txt
120

4 过滤数字到其他文件
[root@hz-kvm cephdisk3]# cat 1.txt | tr -d [:digit:] > 3.txt
[root@hz-kvm cephdisk3]# cat 3.txt
Tib

shell把字符串中的字母去掉,只保留数字

标签:显示文件   dig   去掉   kvm   shell   span   cat   txt   保留   

原文地址:https://www.cnblogs.com/cloud-datacenter/p/12329430.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!