Skip to content

Instantly share code, notes, and snippets.

View Dreamzilla's full-sized avatar

Yuri Manders Dreamzilla

View GitHub Profile
@Dreamzilla
Dreamzilla / importer.py
Last active May 15, 2017 13:37
Script that imports hosts from text file into Termius
#!/usr/bin/python
import sys
from subprocess import call
def make_call(host):
call = [
'termius', 'host', '-L',
host[0], '-a', host[1]