摘要: #coding:utf-8import osfor d in os.listdir('.'): if '.java' in d: with open(d, 'r') as f: ... 阅读全文
posted @ 2017-07-13 11:40 2020张念磊要加油 阅读(272) 评论(0) 推荐(0) 编辑
摘要: Command line instructionsGit global setupgit config --global user.name "******"git config --global user.em... 阅读全文
posted @ 2017-07-13 11:32 2020张念磊要加油 阅读(125) 评论(0) 推荐(0) 编辑
摘要: :w 保存文件但不退出vi:w file 将修改另外保存到file中,不退出vi:w! 强制保存,不推出vi:wq 保存文件并退出vi:wq! 强制保存文件,并退出viq: 不保存文件,退出vi:q! 不保存文件... 阅读全文
posted @ 2017-07-13 11:30 2020张念磊要加油 阅读(81) 评论(0) 推荐(0) 编辑