{"id":54291,"date":"2023-06-14T05:39:13","date_gmt":"2023-06-13T21:39:13","guid":{"rendered":"http:\/\/lrxjmw.cn\/?p=54291"},"modified":"2023-06-14T05:39:13","modified_gmt":"2023-06-13T21:39:13","slug":"shell_so_easy2","status":"publish","type":"post","link":"https:\/\/lrxjmw.cn\/shell_so_easy2.html","title":{"rendered":"shell\u7f16\u7a0bso easy(\u4e8c)"},"content":{"rendered":"
\u5bfc\u8bfb<\/td>\n | \u5982\u4eca\uff0c\u4e0d\u4f1aLinux\u7684\u7a0b\u5e8f\u5458\u90fd\u4e0d\u597d\u610f\u601d\u8bf4\u81ea\u5df1\u662f\u7a0b\u5e8f\u5458\uff0c\u4e0d\u4f1ashell\u7f16\u7a0b\u7684\u5c31\u4e0d\u80fd\u8bf4\u81ea\u5df1\u4f1alinux\u3002shell\u5982\u6b64\u91cd\u8981\uff0c\u4f46\u5b9e\u9645\u4e0ashell\u7f16\u7a0b\u5374\u5f88\u7b80\u5355\u3002<\/strong><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n \u57fa\u672c\u6570\u636e\u7c7b\u578b\u8fd0\u7b97<\/strong><\/div>\n <\/p>\n \u6574\u6570\u8fd0\u7b97<\/strong><\/div>\n \u5728shell\u4e2d\uff0c\u6709\u4e24\u79cd\u65b9\u5f0f\u80fd\u5b9e\u73b0\u6574\u6570\u8fd0\u7b97\uff0c\u4e00\u79cd\u662f\u4f7f\u7528expr\u547d\u4ee4\uff0c \u53e6\u5916\u4e00\u79cd\u662f\u901a\u8fc7\u65b9\u62ec\u53f7\uff08$[]\uff09\u6765\u5b9e\u73b0\u3002<\/p>\n expr<\/strong><\/span><\/div>\n \r\n#!\/bin\/bash\r\n#\u8f93\u51fa13\r\nexpr 10 + 3\r\n\r\n#\u8f93\u51fa10+3\r\nexpr 10+3\r\n\r\n#\u8f93\u51fa7\r\nexpr 10 - 3\r\n\r\n#\u8f93\u51fa30\r\nexpr 10 \\* 3\r\n\r\n#\u8f93\u51fa3\r\nexpr 10 \/ 3\r\n\r\n#\u8f93\u51fa1\r\nexpr 10 % 3\r\n\r\n#\u5c06\u8ba1\u7b97\u7ed3\u679c\u8d4b\u503c\u7ed9\u53d8\u91cf\r\nnum1=$(expr 10 % 3)\r\n\r\n#\u5c06\u8ba1\u7b97\u7ed3\u679c\u8d4b\u503c\u7ed9\u53d8\u91cf\r\nnum2=`expr 10 % 3`\r\n<\/pre>\n |