001、判断是否末尾有空格
(base) [root@PC1 test]# ls a.txt (base) [root@PC1 test]# cat a.txt ## 测试数据 a d g k u d d g k d f , z d g dfe jh (base) [root@PC1 test]# cat -A a.txt a d g$ k u d $ d g k^I^I$ d f ,$ z d g$ ^Idfe ^Ijh$ (base) [root@PC1 test]# grep "[[:space:]]$" a.txt ## 判断末尾是否有空格, 有输出则说明有空格 k u d d g k
002、判断开头是否有空格
(base) [root@PC1 test]# ls a.txt (base) [root@PC1 test]# cat a.txt ## 测试数据 a d g k u d d g k d f , z d g dfe jh (base) [root@PC1 test]# sed -n l a.txt a d g$ k u d $ d g k\t\t$ d f ,$ z d g$ \tdfe \tjh$ (base) [root@PC1 test]# grep "^[[:space:]]" a.txt ## 判断开头是否有空格,有输出则说明开头有空格 z d g dfe jh
标签:PC1,空格,base,linux,test,txt,root,末尾 From: https://www.cnblogs.com/liujiaxin2018/p/17269045.html