{"id":204318,"date":"2020-11-10T08:11:49","date_gmt":"2020-11-10T00:11:49","guid":{"rendered":"https:\/\/lrxjmw.cn\/?p=204318"},"modified":"2020-10-29T15:13:24","modified_gmt":"2020-10-29T07:13:24","slug":"python-sys-linux","status":"publish","type":"post","link":"https:\/\/lrxjmw.cn\/python-sys-linux.html","title":{"rendered":"\u901a\u8fc7\u4ee3\u7801\u5b9e\u4f8b\u7b80\u5355\u4e86\u89e3Python sys\u6a21\u5757"},"content":{"rendered":"\n\n\n
\u5bfc\u8bfb<\/td>\n\u8fd9\u7bc7\u6587\u7ae0\u4e3b\u8981\u4ecb\u7ecd\u4e86\u901a\u8fc7\u4ee3\u7801\u5b9e\u4f8b\u4e86\u89e3Python sys\u6a21\u5757,\u6587\u4e2d\u901a\u8fc7\u793a\u4f8b\u4ee3\u7801\u4ecb\u7ecd\u7684\u975e\u5e38\u8be6\u7ec6\uff0c\u5bf9\u5927\u5bb6\u7684\u5b66\u4e60\u6216\u8005\u5de5\u4f5c\u5177\u6709\u4e00\u5b9a\u7684\u53c2\u8003\u5b66\u4e60\u4ef7\u503c,\u9700\u8981\u7684\u670b\u53cb\u53ef\u4ee5\u53c2\u8003\u4e0b
\n<\/strong><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n
sys-\u7cfb\u7edf\u7279\u5b9a\u7684\u53c2\u6570\u548c\u529f\u80fd<\/strong><\/span><\/div>\n

\u8be5\u6a21\u5757\u63d0\u4f9b\u5bf9\u89e3\u91ca\u5668\u4f7f\u7528\u6216\u7ef4\u62a4\u7684\u4e00\u4e9b\u53d8\u91cf\u7684\u8bbf\u95ee\uff0c\u4ee5\u53ca\u4e0e\u89e3\u91ca\u5668\u5f3a\u70c8\u4ea4\u4e92\u7684\u51fd\u6570\u3002\u5b83\u59cb\u7ec8\u53ef\u7528\u3002<\/p>\n

\u4ee3\u7801\u5982\u4e0b<\/p>\n

\r\n#!\/usr\/bin\/python\r\n# Filename: cat.py\r\n \r\nimport sys\r\n \r\ndef readfile(filename):\r\n  '''Print a file to the standard output.'''\r\n  f = file(filename)\r\n  while True:\r\n    line = f.readline()\r\n    if len(line) == 0:\r\n      break\r\n    print line, # notice comma\r\n  f.close()\r\n \r\n# Script starts from here\r\nif len(sys.argv) < 2:\r\n  print 'No action specified.'\r\n  sys.exit()\r\n \r\nif sys.argv[1].startswith('--'):\r\n  option = sys.argv[1][2:]\r\n  # fetch sys.argv[1] but without the first two characters\r\n  if option == 'version':\r\n    print 'Version 1.2'\r\n  elif option == 'help':\r\n    print '''\\\r\nThis program prints files to the standard output.\r\nAny number of files can be specified.\r\nOptions include:\r\n --version : Prints the version number\r\n --help  : Display this help'''\r\n  else:\r\n    print 'Unknown option.'\r\n  sys.exit()\r\nelse:\r\n  for filename in sys.argv[1:]:\r\n    readfile(filename)<\/pre>\n

\u8fd9\u4e2a\u7a0b\u5e8f\u7528\u6765\u6a21\u4efflinux\u4e2d\u7684cat\u547d\u4ee4\u3002<\/p>\n

\u5728python\u7a0b\u5e8f\u8fd0\u884c\u7684\u65f6\u5019\uff0c\u5373\u4e0d\u662f\u5728\u4ea4\u4e92\u6a21\u5f0f\u4e0b\uff0c\u5728sys.argv[]\u5217\u8868\u4e2d\u603b\u662f\u81f3\u5c11\u6709\u4e00\u4e2a\u9879\u76ee\uff0c\u5b83\u5c31\u662f\u5f53\u524d\u8fd0\u884c\u7684\u7a0b\u5e8f\u7684\u540d\u79f0\uff0c\u5176\u4ed6\u7684\u547d\u4ee4\u884c\u53c2\u6570\u5728\u8fd9\u4e2a\u9879\u76ee\u4e4b\u540e\u3002<\/p>\n

\u53e6\u5916\uff0csys\u6a21\u5757\u4e2d\u8fd8\u6709\u5176\u4ed6\u7279\u522b\u6709\u7528\u7684\u9879\u76ee\uff0csys.stdin sys.stdout sys.stderr\u5206\u522b\u5bf9\u5e94\u6807\u51c6\u8f93\u5165\u3001\u6807\u51c6\u8f93\u51fa\u3001\u6807\u51c6\u9519\u8bef\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"

\u8be5\u6a21\u5757\u63d0\u4f9b\u5bf9\u89e3\u91ca\u5668\u4f7f\u7528\u6216\u7ef4\u62a4\u7684\u4e00\u4e9b\u53d8\u91cf\u7684\u8bbf\u95ee\uff0c\u4ee5\u53ca\u4e0e\u89e3\u91ca\u5668\u5f3a\u70c8\u4ea4\u4e92\u7684\u51fd\u6570\u3002\u5b83\u59cb\u7ec8\u53ef\u7528\u3002 \u4ee3\u7801\u5982\u4e0b #!\/usr […]<\/p>\n","protected":false},"author":1482,"featured_media":160637,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[55],"tags":[],"class_list":["post-204318","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-thread"],"acf":[],"_links":{"self":[{"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/posts\/204318","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/users\/1482"}],"replies":[{"embeddable":true,"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/comments?post=204318"}],"version-history":[{"count":3,"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/posts\/204318\/revisions"}],"predecessor-version":[{"id":204321,"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/posts\/204318\/revisions\/204321"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/media\/160637"}],"wp:attachment":[{"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/media?parent=204318"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/categories?post=204318"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/lrxjmw.cn\/wp-json\/wp\/v2\/tags?post=204318"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}