shell-things/bash_exports
Mika Suomalainen c08ee2eac2 Added information what every file does. (Yes, bash_profile is useful...
...even if it has only one line.)
2011-08-25 19:52:00 +03:00

15 lines
641 B
Bash

# This file exports everything in my bashrc. You probably want to edit somethings here, like line 14, which sets timezone to Europe/Helsinki.
# Sets the default editor. Currently nano.
export EDITOR=nano
# Sets user specifig PYTHONPATH. Replace 2.X with your Python version. For example with Python 2.7 you replace X with 7.
#export PYTHONPATH=$HOME/.packages/lib/python2.X/site-packages
# Fixes locale problems (for example) when SSHing in with different locale. (Another example: Hailo plugin for supybot gives locale errors, this fixes it.)
LC_ALL=C
export LC_ALL
# Sets your timezone.
export TZ="/usr/share/zoneinfo/Europe/Helsinki"