Skip to content

Instantly share code, notes, and snippets.

@toolforger
toolforger / aioobe.sh
Last active February 6, 2017 05:39
Steps to reproduce MasterDuke's AIOOBE from scratch
# Setup installation directory
mkdir install
# Create an environment setup shell file for sourcing
# Make it so that it can be repeated with no ill effects
cat >setup-vars.inc.sh <<EOF
if [ ".\$perl6_prefix" = "." ]; then
export perl6_prefix=`pwd`/install
export PATH=\$perl6_prefix/bin:\$PATH
fi