Skip to content

Instantly share code, notes, and snippets.

View herlo's full-sized avatar

Clint Savage herlo

View GitHub Profile
@herlo
herlo / blah.py
Last active December 16, 2015 18:39 — forked from shalkie/blah
Testing class for mike
import subprocess
class Blah:
""" This is a simple class """
def __init__(self):
self.cfg = {}
def copy_files_to_myself(source, dest):
args = ["/bin/cp", "-vr", "{0} {1}".format(source, dest)]