Skip to content

Instantly share code, notes, and snippets.

@phadej
Created October 8, 2014 13:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phadej/fceb97a593e3644327e8 to your computer and use it in GitHub Desktop.
Save phadej/fceb97a593e3644327e8 to your computer and use it in GitHub Desktop.
Simple clean environment
# Example configuration
export PATH=/usr/bin
export FOO=1
export BAR=2
#!/bin/bash
# Run next stage in empty environment
/usr/bin/env -i /bin/bash stage2.sh $1
# Populate env with configuration
source $1
# Next stage
/bin/bash stage3.sh
# Example last stage:
echo $FOO $BAR
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment