Open a bunch of URLs from the clipboard in a browser on the Mac
Just now I had a bunch of URLs in a spreadsheet I wanted to quickly open. This time, it wasn't too quick, because I went down the rabbit hole of coming up with a solution (and making a blog post about it). Next time though....
Steps:
- Copy your URLs into the clipboard (⌘C or Edit > Copy)
- Open a terminal
- Type:
pbpaste|tr '\n' '\0'|xargs -0 -I{} open /Applications/Safari.app {} &
Quick rundown: