摘要: getpass的功能是:允许隐式的输入字符串 import getpass _username='vigossr' _password='haha' username=input('username: ') password=getpass.getpass('password: ') if _use 阅读全文
posted @ 2018-08-06 21:52 月亮上的石头 阅读(91) 评论(0) 推荐(0) 编辑
摘要: Linux awk用法: grep -i "hahaha" | awk -F"ctrl_" '{print $2}' | sort | uniq -c | sort -snk 1 grep -i: 在文件中检索 "hahaha",不区分大小写 awk -F"xxx": 以xxx为分隔符,对分割后的行 阅读全文
posted @ 2018-08-06 21:45 月亮上的石头 阅读(82) 评论(0) 推荐(0) 编辑