当前位置: 技术问答>linux和unix
(在线等)如何提取ppp0这个字符串中的0
来源: 互联网 发布时间:2016-10-16
本文导语: 在shell中$1=ppp0. 我现在想要 0 这个数值,怎么把ppp给去掉呢?谢谢回答!! | echo $1 | grep -o "[0-9]"
在shell中$1=ppp0.
我现在想要 0 这个数值,怎么把ppp给去掉呢?谢谢回答!!
我现在想要 0 这个数值,怎么把ppp给去掉呢?谢谢回答!!
|
echo $1 | grep -o "[0-9]"