摘要:
# 1.打开浏览器from selenium import webdriver chrome = webdriver.Chrome()# 2.打开bing网站chrome.get("https://cn.bing.com/")# 3。输入关键词chrome.find_element_by_id("s 阅读全文
# 1.打开浏览器from selenium import webdriver chrome = webdriver.Chrome()# 2.打开bing网站chrome.get("https://cn.bing.com/")# 3。输入关键词chrome.find_element_by_id("s 阅读全文
posted @ 2022-10-29 09:12
sxqlzxy
阅读(49)
评论(0)
推荐(0)
摘要:
1、使用 Shell 命令,从 example.log 日志文件中,统计最后 100 行内,包含 "test" 字符串的行数第一题答案:tail -n 100 example.log|grep "test"|wc -l 2、使用任意语言,递归地将某个磁盘目录下的 jpeg 文件的扩展名修改为 jpg 阅读全文
1、使用 Shell 命令,从 example.log 日志文件中,统计最后 100 行内,包含 "test" 字符串的行数第一题答案:tail -n 100 example.log|grep "test"|wc -l 2、使用任意语言,递归地将某个磁盘目录下的 jpeg 文件的扩展名修改为 jpg 阅读全文
posted @ 2022-10-29 09:10
sxqlzxy
阅读(31)
评论(0)
推荐(0)

1、在命令模式下输入set nu,展示文本行号 2、按字符复制与粘贴v(小写),便可以进入按字符选择模式,通过h、j、k、l键移动光标选择要进行复制的字符串 3、u:撤回;ctrl+r恢复 4、y:复制选中的字符;p:粘贴选中的字符 5、按块复制与粘贴:Ctrl+V;按行复制与粘贴V(大写) 6、x
浙公网安备 33010602011771号