在Firefox / Chrome中,如何将文本文件中的多个URL作为不同的选项卡打开?我的文本文件只是URL列表,每行一个:
http://www.url1.com
http://www.url2.com
http://www.url3.com
http://www.url4.com
在Firefox / Chrome中,如何将文本文件中的多个URL作为不同的选项卡打开?我的文本文件只是URL列表,每行一个:
http://www.url1.com
http://www.url2.com
http://www.url3.com
http://www.url4.com
Answers:
我认为这可能是一个不错的解决方案:
cat /home/username/anyfolder/allmyURLs.txt | xargs firefox -new-tab
在Windows / cygwin上...对我有用:
#!/bin/bash -xe
browser="/cygdrive/c/Program Files (x86)/Google/Chrome/Application/chrome.exe"
clients="fb aapl nflx "
for i in $clients
do
"$browser" --new-tab https://asite.com/dashboard/$i
done
alias google-chrome='/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome'
。可能与Firefox类似。