Skip to content

Instantly share code, notes, and snippets.

View mtsvnc's full-sized avatar
💭
I may be slow to respond.

Mete Sevinc mtsvnc

💭
I may be slow to respond.
View GitHub Profile
@hakluke
hakluke / openinbrowser.py
Created May 18, 2019 15:38
Little Python script to open a list of URLs from a file in browser tabs, n tabs at a time
#! /usr/bin/python3
import webbrowser, sys
if len(sys.argv) < 3:
print("Usage: openinbrowser.py ./urls.txt 20")
quit()
f = open(sys.argv[1])
tabs = int(sys.argv[2])
counter = 1