我最常見的任務之一是:
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