上一页 1 ··· 57 58 59 60 61 62 63 64 65 ··· 71 下一页
摘要: sh新建一个子shell进程,变量在主shell中无法获取 source在当前shell中执行脚本,变量在主shell即当前shell中可以获取 例子: 1.新建一个test.sh脚本,内容为:A=1 2.然后使其可执行chmod +x test.sh 3.运行sh test.sh后,echo $A,显示为空,因为A=1并未传回给当前shell 4.运行./test.sh后,也是一样的... 阅读全文
posted @ 2019-04-27 22:55 不带R的墨菲特 阅读(1967) 评论(0) 推荐(2)
摘要: 我的github chrome下载地址:https://github.com/chen1932390299/python 国内开源的资源 chrome下载centos 的:https://www.chromedownloads.net/chrome64linux/ 乌班图和德班的https://ww 阅读全文
posted @ 2019-04-26 23:43 不带R的墨菲特 阅读(2632) 评论(0) 推荐(0)
摘要: http://www.cnblogs.com/wade-xu/p/4236295.html 阅读全文
posted @ 2019-04-26 15:12 不带R的墨菲特 阅读(430) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/sochishun/p/7070768.html 阅读全文
posted @ 2019-04-26 01:16 不带R的墨菲特 阅读(316) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/sui_yi123/article/details/81876207 阅读全文
posted @ 2019-04-26 01:08 不带R的墨菲特 阅读(319) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/sixrain/p/9138442.html 阅读全文
posted @ 2019-04-26 00:42 不带R的墨菲特 阅读(403) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/ruiy/p/9469129.html 阅读全文
posted @ 2019-04-26 00:35 不带R的墨菲特 阅读(390) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/hanmk/p/9336410.html 阅读全文
posted @ 2019-04-26 00:32 不带R的墨菲特 阅读(277) 评论(0) 推荐(0)
摘要: 1.最简单的装饰器不带入参 def func(): pass def decorate(func) def wrapper(): return func() return wrapper 使用 @decorate def aa(m): pass 2.要是带参数就简单给他就是了: 因为函数有千千万,你 阅读全文
posted @ 2019-04-26 00:12 不带R的墨菲特 阅读(550) 评论(0) 推荐(0)
摘要: """ pip install ws4py """ import json from ws4py.client.threadedclient import WebSocketClient class CG_Client(WebSocketClient): def opened(self): req 阅读全文
posted @ 2019-04-25 23:42 不带R的墨菲特 阅读(1959) 评论(1) 推荐(0)
上一页 1 ··· 57 58 59 60 61 62 63 64 65 ··· 71 下一页