linux 怎么查找文件的最后一个字符

linux 怎么查找文件的最后一个字符,第1张

.[root@pn ~]# cat test.txt

afaf

sdfasdfg

asdfas

asdf

sdfsdf

[root@pn ~]# cat test.txt | grep -o .$

f

g

s

f

f

[root@pn ~]# cat test.txt | tail -1 | grep -o .$

f

只看数字

echo "*\5454" | egrep -o '[0-9]+'

以\分隔,查看最后一个\后面内容

a='*\5454'

echo ${a##*'\'}

或者

echo "*\5454" | awk -F'\' '{print $NF}'


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/9015172.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-24
下一篇 2023-04-24

发表评论

登录后才能评论

评论列表(0条)

保存