added test for .bashrc related to #96

This commit is contained in:
Brandon Mathis 2011-08-16 02:41:18 -04:00
parent 15e71344f5
commit 298af5f8d4

View File

@ -17,3 +17,13 @@ sidebar: false
foo && bar foo && bar
module.exports = Tweets module.exports = Tweets
``` ```
{% codeblock Append this to your .bashrc file. %}
echo "User .bashrc..."
for i in ~/.env/*.sh ; do
if [ -r "$i" ]; then
. $i
fi
done
unset i
{% endcodeblock %}