This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# NOTE: I don't have any significant experience with programming, so don't be | |
# surprised if I've screwed up. I'll remove this note once it's been | |
# looked at by smarter people. | |
# -- Matt (hybrid120 at gmail) | |
import os | |
import stat |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Originally by: Dr. Martin Menzel www.dr-menzel-it.de | |
# Modified by Matthew Pherigo | |
# | |
# Use at your own risk. No warranty. No fee. | |
# | |
# parameter list: | |
# (1) the filesystem to be used to start decendant recursion | |
# example: apool/zones/webzone | |
# (2) the snapshot to which the filesystems should be rolled back |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# **Requires**: *Bash, Git, Tmux, Zsh, Vim* | |
cd; | |
git clone --recursive [email protected]:mwpher/dotfiles; | |
git config --global user.name "Matthew Pherigo"; | |
git config --global user.email [email protected]; | |
git config --global push.default simple; | |
ln -s dotfiles/zshrc .zshrc; | |
ln -s dotfiles/tmux.conf .tmux.conf; | |
ln -s dotfiles/dotvim/ .vim; |