Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # ~/.profile: executed by the command interpreter for login shells.
- # This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
- # exists.
- # see /usr/share/doc/bash/examples/startup-files for examples.
- # the files are located in the bash-doc package.
- # the default umask is set in /etc/profile; for setting the umask
- # for ssh logins, install and configure the libpam-umask package.
- #umask 022
- # if running bash
- if [ -n "$BASH_VERSION" ]; then
- # include .bashrc if it exists
- if [ -f "$HOME/.bashrc" ]; then
- . "$HOME/.bashrc"
- fi
- if [ -f "$HOME/.bashrc_local" ]; then
- . "$HOME/.bashrc_local"
- fi
- fi
- # set PATH so it includes TexLive
- if [ -d "/usr/local/texlive/2011/bin/i386-linux" ] ; then
- PATH="/usr/local/texlive/2011/bin/i386-linux:$PATH"
- fi
- # set PATH so it includes user's shared bin if it exists
- if [ -d "$HOME/Dropbox/bin" ] ; then
- PATH="$HOME/Dropbox/bin:$PATH"
- fi
- # set PATH so it includes user's private bin if it exists
- if [ -d "$HOME/bin" ] ; then
- PATH="$HOME/bin:$PATH"
- fi
- export LANGUAGE="en_GB:en"
- export LC_MESSAGES="en_GB.UTF-8"
- export LC_CTYPE="en_GB.UTF-8"
- export LC_COLLATE="en_GB.UTF-8"
Advertisement
Add Comment
Please, Sign In to add comment