{"id":105,"date":"2009-07-31T13:43:30","date_gmt":"2009-07-31T13:43:30","guid":{"rendered":"http:\/\/kumouse.aafox.com\/?p=105"},"modified":"2009-07-31T13:43:30","modified_gmt":"2009-07-31T13:43:30","slug":"bash%e4%b8%ad%e7%9a%84%e5%ad%97%e7%ac%a6%e4%b8%b2%e5%a4%84%e7%90%86","status":"publish","type":"post","link":"https:\/\/www.kumouse.com\/?p=105","title":{"rendered":"bash\u4e2d\u7684\u5b57\u7b26\u4e32\u5904\u7406"},"content":{"rendered":"<p>bash\u4e2d\u7684\u5b57\u7b26\u4e32\u5904\u7406<br \/>&nbsp;&nbsp;1 \u5f97\u5230\u5b57\u7b26\u4e32\u957f\u5ea6<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# s=abcdef<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# expr length $s<br \/>&nbsp;&nbsp;&nbsp;&nbsp;6<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# echo ${#s}<br \/>&nbsp;&nbsp;&nbsp;&nbsp;6<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# expr &quot;$s&quot; : &quot;.*&quot;<br \/>&nbsp;&nbsp;&nbsp;&nbsp;6<\/p>\n<p>&nbsp;&nbsp;2 \u67e5\u627e\u5b50\u4e32<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# expr index $s a<br \/>&nbsp;&nbsp;&nbsp;&nbsp;1<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# expr index $s b<br \/>&nbsp;&nbsp;&nbsp;&nbsp;2<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# expr index $s c<br \/>&nbsp;&nbsp;&nbsp;&nbsp;3<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# expr index $s d<br \/>&nbsp;&nbsp;&nbsp;&nbsp;4<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# expr index $s e<br \/>&nbsp;&nbsp;&nbsp;&nbsp;5<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# expr index $s f<br \/>&nbsp;&nbsp;&nbsp;&nbsp;6<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# expr index $s g<br \/>&nbsp;&nbsp;&nbsp;&nbsp;0<\/p>\n<p>&nbsp;&nbsp;3 \u5f97\u5230\u5b50\u5b57\u7b26\u4e32<br \/>&nbsp;&nbsp;&nbsp;&nbsp;\u8bed\u6cd51\uff1aexpr substr startpos length \u7b2c\u4e00\u4e2a\u5b57\u7b26\u5e8f\u53f7\u4e3a1<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# expr substr $s 1 3<br \/>&nbsp;&nbsp;&nbsp;&nbsp;abc<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# expr substr $s 1 11<br \/>&nbsp;&nbsp;&nbsp;&nbsp;abcdef<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# expr substr $s 3 4<br \/>&nbsp;&nbsp;&nbsp;&nbsp;cdef<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# expr substr $s 3 1<br \/>&nbsp;&nbsp;&nbsp;&nbsp;c<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# m=1<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# j=2<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# expr substr $s $m $j<\/p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;\u8bed\u6cd52\uff1a${x:pos:length} \u7b2c\u4e00\u4e2a\u5b57\u7b26\u7684\u5e8f\u53f7\u4e3a0<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# expr ${s:0:1}<br \/>&nbsp;&nbsp;&nbsp;&nbsp;a<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# expr ${s:2:2}<br \/>&nbsp;&nbsp;&nbsp;&nbsp;cd<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# expr ${s:2:11}<br \/>&nbsp;&nbsp;&nbsp;&nbsp;cdef<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# m=1<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# j=2<br \/> &nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# expr ${s:$m:$j}<br \/>&nbsp;&nbsp;&nbsp;&nbsp;bc<\/p>\n<p>&nbsp;&nbsp;4 \u5339\u914d\u6b63\u5219\u8868\u8fbe\u5f0f<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# expr match $s &quot;ab&quot;<br \/>&nbsp;&nbsp;&nbsp;&nbsp;2<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# expr match $s &quot;abc&quot;<br \/>&nbsp;&nbsp;&nbsp;&nbsp;3<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# expr match $s &quot;bc&quot;<br \/>&nbsp;&nbsp;&nbsp;&nbsp;0<\/p>\n<p>&nbsp;&nbsp;5 \u4fee\u6539\u5b57\u7b26\u4e32\u6390\u5934\u53bb\u5c3e<br \/>&nbsp;&nbsp;&nbsp;&nbsp;#&nbsp;&nbsp;\u53bb\u9664\u6700\u5c0f\u5339\u914d\u524d\u7f00<br \/>&nbsp;&nbsp;&nbsp;&nbsp;##&nbsp;&nbsp;\u53bb\u9664\u6700\u5927\u5339\u914d\u524d\u7f00<br \/>&nbsp;&nbsp;&nbsp;&nbsp;%&nbsp;&nbsp;\u53bb\u9664\u6700\u5c0f\u5339\u914d\u540e\u7f00<br \/>&nbsp;&nbsp;&nbsp;&nbsp;%%&nbsp;&nbsp;\u53bb\u9664\u6700\u5927\u5339\u914d\u540e\u7f00<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# x=cccdddcccpicxxyyyxxx<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# echo ${x%x*x}<br \/>&nbsp;&nbsp;&nbsp;&nbsp;cccdddcccpicxxyyyx<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# echo ${x%%x*x}<br \/>&nbsp;&nbsp;&nbsp;&nbsp;cccdddcccpic<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# echo ${x#c?c}<br \/>&nbsp;&nbsp;&nbsp;&nbsp;dddcccpicxxyyyxxx<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# echo ${x#c*c}<br \/>&nbsp;&nbsp;&nbsp;&nbsp;cdddcccpicxxyyyxxx<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# echo ${x#c*c}<br \/>&nbsp;&nbsp;&nbsp;&nbsp;cdddcccpicxxyyyxxx<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# echo ${x##c*c}<br \/>&nbsp;&nbsp;&nbsp;&nbsp;xxyyyxxx<br \/>&nbsp;&nbsp;&nbsp;&nbsp;\u8fd9\u91cc\u6b63\u5219\u7528\u7684\u7279\u6b8a\u7b26\u53f7\u662f? * \u5e76\u975e . *<\/p>\n<p>&nbsp;&nbsp;6 \u5b57\u7b26\u4e32\u66ff\u6362<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# x=efefefef<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# echo ${x\/e\/f}<br \/>&nbsp;&nbsp;&nbsp;&nbsp;ffefefef<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# echo ${x\/\/e\/f}<br \/>&nbsp;&nbsp;&nbsp;&nbsp;ffffffff<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# x=efefacacefacefcb<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# echo ${x\/\/ef\/f}<br \/>&nbsp;&nbsp;&nbsp;&nbsp;ffacacfacfcb<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# echo ${x\/ef\/f}<br \/>&nbsp;&nbsp;&nbsp;&nbsp;fefacacefacefcb<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# echo ${x\/e??\/f}<br \/>&nbsp;&nbsp;&nbsp;&nbsp;ffacacefacefcb<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# echo ${x\/\/e??\/f}<br \/>&nbsp;&nbsp;&nbsp;&nbsp;ffacacfcfb<br \/>&nbsp;&nbsp;&nbsp;&nbsp;[root@redhat test]# echo ${x\/f*\/z}<br \/>&nbsp;&nbsp;&nbsp;&nbsp;ez<br \/>&nbsp;&nbsp;&nbsp;&nbsp;\u8fd9\u91cc\u6b63\u5219\u7528\u7684\u7279\u6b8a\u7b26\u53f7\u662f? * , \u4e0d\u53ef\u4ee5\u4f7f\u7528 regexp<\/p>\n","protected":false},"excerpt":{"rendered":"<p>bash\u4e2d\u7684\u5b57\u7b26\u4e32\u5904\u7406&nbsp;&nbsp;1 \u5f97\u5230\u5b57\u7b26\u4e32\u957f\u5ea6&nbsp;&nbsp;&nbsp;&#038;nbsp [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[],"class_list":["post-105","post","type-post","status-publish","format-standard","hentry","category-linux"],"_links":{"self":[{"href":"https:\/\/www.kumouse.com\/index.php?rest_route=\/wp\/v2\/posts\/105","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.kumouse.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.kumouse.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.kumouse.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.kumouse.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=105"}],"version-history":[{"count":0,"href":"https:\/\/www.kumouse.com\/index.php?rest_route=\/wp\/v2\/posts\/105\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.kumouse.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=105"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.kumouse.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=105"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.kumouse.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=105"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}