{"id":316,"date":"2024-07-27T21:59:01","date_gmt":"2024-07-27T13:59:01","guid":{"rendered":"https:\/\/thereisno.top:4430\/?p=316"},"modified":"2024-10-22T15:57:58","modified_gmt":"2024-10-22T07:57:58","slug":"shell-%e6%95%b0%e7%bb%84","status":"publish","type":"post","link":"https:\/\/thereisno.top\/?p=316","title":{"rendered":"Shell \u6570\u7ec4"},"content":{"rendered":"\n<p>Shell\u5728\u7f16\u7a0b\u65b9\u9762\u6bd4Windows\u6279\u5904\u7406\u5f3a\u5927\u5f88\u591a\uff0c\u65e0\u8bba\u662f\u5728\u5faa\u73af\u3001\u8fd0\u7b97\u3002<\/p>\n\n\n\n<!--more-->\n\n\n\n<p>bash\u652f\u6301\u4e00\u7ef4\u6570\u7ec4\uff08\u4e0d\u652f\u6301\u591a\u7ef4\u6570\u7ec4\uff09\uff0c\u5e76\u4e14\u6ca1\u6709\u9650\u5b9a\u6570\u7ec4\u7684\u5927\u5c0f\u3002\u7c7b\u4f3c\u4e0eC\u8bed\u8a00\uff0c\u6570\u7ec4\u5143\u7d20\u7684\u4e0b\u6807\u75310\u5f00\u59cb\u7f16\u53f7\u3002\u83b7\u53d6\u6570\u7ec4\u4e2d\u7684\u5143\u7d20\u8981\u5229\u7528\u4e0b\u6807\uff0c\u4e0b\u6807\u53ef\u4ee5\u662f\u6574\u6570\u6216\u7b97\u672f\u8868\u8fbe\u5f0f\uff0c\u5176\u503c\u5e94\u5927\u4e8e\u6216\u7b49\u4e8e0\u3002<br>\u5b9a\u4e49\u6570\u7ec4<br>\u5728Shell\u4e2d\uff0c\u7528\u62ec\u53f7\u6765\u8868\u793a\u6570\u7ec4\uff0c\u6570\u7ec4\u5143\u7d20\u7528\u201c\u7a7a\u683c\u201d\u7b26\u53f7\u5206\u5272\u5f00\u3002\u5b9a\u4e49\u6570\u7ec4\u7684\u4e00\u822c\u5f62\u5f0f\u4e3a\uff1a<br>array_name=(value1 \u2026 valuen)<br>\u4f8b\u5982\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>1. array_name=(value0 value1 value2 value3)<\/code><\/pre>\n\n\n\n<p>\u6216\u8005<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>array_name=(\nvalue0\nvalue1\nvalue2\nvalue3\n)<\/code><\/pre>\n\n\n\n<p>\u8fd8\u53ef\u4ee5\u5355\u72ec\u5b9a\u4e49\u6570\u7ec4\u7684\u5404\u4e2a\u5206\u91cf\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>1. array_name&#91;0]=value0\n2. array_name&#91;1]=value1\n3. array_name&#91;2]=value2<\/code><\/pre>\n\n\n\n<p>\u53ef\u4ee5\u4e0d\u4f7f\u7528\u8fde\u7eed\u7684\u4e0b\u6807\uff0c\u800c\u4e14\u4e0b\u6807\u7684\u8303\u56f4\u6ca1\u6709\u9650\u5236\u3002<br>\u8bfb\u53d6\u6570\u7ec4<br>\u8bfb\u53d6\u6570\u7ec4\u5143\u7d20\u503c\u7684\u4e00\u822c\u683c\u5f0f\u662f\uff1a<br>${array_name[index]}<br>\u4f8b\u5982\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>1. valuen=${array_name&#91;2]}<\/code><\/pre>\n\n\n\n<p>\u4e3e\u4e2a\u4f8b\u5b50\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#!\/bin\/sh\nNAME&#91;0]=\"Zara\"\nNAME&#91;1]=\"Qadir\"\nNAME&#91;2]=\"Mahnaz\"\nNAME&#91;3]=\"Ayan\"\nNAME&#91;4]=\"Daisy\"\necho \"First Index: ${NAME&#91;0]}\"\necho \"Second Index: ${NAME&#91;1]}\"<\/code><\/pre>\n\n\n\n<p>\u8fd0\u884c\u811a\u672c\uff0c\u8f93\u51fa\uff1a<br>$.\/test.sh<br>First Index: Zara<br>Second Index: Qadir<br>\u4f7f\u7528@ \u6216 * \u53ef\u4ee5\u83b7\u53d6\u6570\u7ec4\u4e2d\u7684\u6240\u6709\u5143\u7d20\uff0c\u4f8b\u5982\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>1. ${array_name&#91;*]}\n2. ${array_name&#91;@]}<\/code><\/pre>\n\n\n\n<p>\u4e3e\u4e2a\u4f8b\u5b50\uff1a<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#!\/bin\/sh\nNAME&#91;0]=\"Zara\"\nNAME&#91;1]=\"Qadir\"\nNAME&#91;2]=\"Mahnaz\"\nNAME&#91;3]=\"Ayan\"\nNAME&#91;4]=\"Daisy\"\necho \"First Method: ${NAME&#91;*]}\"\necho \"Second Method: ${NAME&#91;@]}\"<\/code><\/pre>\n\n\n\n<p>\u8fd0\u884c\u811a\u672c\uff0c\u8f93\u51fa\uff1a<br>$.\/test.sh<br>First Method: Zara Qadir Mahnaz Ayan Daisy<br>Second Method: Zara Qadir Mahnaz Ayan Daisy<br>\u83b7\u53d6\u6570\u7ec4\u7684\u957f\u5ea6<br>\u83b7\u53d6\u6570\u7ec4\u957f\u5ea6\u7684\u65b9\u6cd5\u4e0e\u83b7\u53d6\u5b57\u7b26\u4e32\u957f\u5ea6\u7684\u65b9\u6cd5\u76f8\u540c\uff0c\u4f8b\u5982\uff1a<br>\u590d\u5236\u7eaf\u6587\u672c\u65b0\u7a97\u53e3<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># \u53d6\u5f97\u6570\u7ec4\u5143\u7d20\u7684\u4e2a\u6570\nlength=${#array_name&#91;@]}\n# \u6216\u8005\nlength=${#array_name&#91;*]}\n# \u53d6\u5f97\u6570\u7ec4\u5355\u4e2a\u5143\u7d20\u7684\u957f\u5ea6\nlengthn=${#array_name&#91;n]}<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Shell\u5728\u7f16\u7a0b\u65b9\u9762\u6bd4Windows\u6279\u5904\u7406\u5f3a\u5927\u5f88\u591a\uff0c\u65e0\u8bba\u662f\u5728\u5faa\u73af\u3001\u8fd0\u7b97\u3002<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[16],"tags":[10,11],"class_list":["post-316","post","type-post","status-publish","format-standard","hentry","category-linux","tag-linux","tag-shell"],"_links":{"self":[{"href":"https:\/\/thereisno.top\/index.php?rest_route=\/wp\/v2\/posts\/316","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/thereisno.top\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/thereisno.top\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/thereisno.top\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/thereisno.top\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=316"}],"version-history":[{"count":2,"href":"https:\/\/thereisno.top\/index.php?rest_route=\/wp\/v2\/posts\/316\/revisions"}],"predecessor-version":[{"id":1346,"href":"https:\/\/thereisno.top\/index.php?rest_route=\/wp\/v2\/posts\/316\/revisions\/1346"}],"wp:attachment":[{"href":"https:\/\/thereisno.top\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=316"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/thereisno.top\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=316"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/thereisno.top\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=316"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}