Uma possibilidade, se você não se importar em baixar as mesmas URLs duas vezes, é fazer algo assim:
#!/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