我最常见的任务之一是:
1)打开一堆标签
2)将每个打开的标签页地址栏中的 URL 和正文复制并粘贴到文本编辑器中
有没有办法从 Linux shell 编写脚本,即使我在 GUI 中浏览?
我对总是做这件事感到厌倦。
答案1
如果您不介意下载相同的 URL 两次,那么可以这样做:
#!/bin/bash -e
for url in 'http://www.example.com/foo/bar.html' \
'http://superuser.com/questions/239935/scriptable-web-browsing'
# and so on
do
TMPFILENAME=$(mktemp)
firefox "$url" # or whatever browser you want that is set to open
# links in a new tab
echo "$url" > $TMPFILENAME
lynx -dump "$url" >> $TMPFILENAME
kate $TMPFILENAME & # or any other text editor that is set to open
# files in a new tab
done