This file contains 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 | |
import "os" | |
while True: | |
os.fork() |
This file contains 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/ruby | |
loop do | |
puts "beard" | |
puts "beer" | |
puts "pie" | |
case ARGV[0] | |
when "-s" | |
puts "rugby" | |
puts "cricket" |
This file contains 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/bash | |
# | |
# Upgrade VirtualBox Guest Additions | |
# | |
# This script removes VirtualBox Guest Additions v4.2.6 from the mirror | |
# machines when brought up using Vagrant, and installs v4.3.6 instead. This | |
# makes the version of VirtualBox being used in this repository the same as | |
# is used in the off-site backup and main Puppet repositories. | |
set -ex |
This file contains 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
bash-3.2$ ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)" | |
==> This script will install: | |
/usr/local/bin/brew | |
/usr/local/Library/... | |
/usr/local/share/man/man1/brew.1 | |
==> The following directories will be made group writable: | |
/usr/local/. | |
/usr/local/bin | |
/usr/local/etc | |
/usr/local/share |