daily pastebin goal
62%
SHARE
TWEET

Untitled

a guest Dec 11th, 2015 65 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # ~/.profile: executed by the command interpreter for login shells.
  2. # This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
  3. # exists.
  4. # see /usr/share/doc/bash/examples/startup-files for examples.
  5. # the files are located in the bash-doc package.
  6.  
  7. # the default umask is set in /etc/profile; for setting the umask
  8. # for ssh logins, install and configure the libpam-umask package.
  9. #umask 022
  10.  
  11. # if running bash
  12. if [ -n "$BASH_VERSION" ]; then
  13.     # include .bashrc if it exists
  14.     if [ -f "$HOME/.bashrc" ]; then
  15.         . "$HOME/.bashrc"
  16.     fi
  17. fi
  18.  
  19. # set PATH so it includes user's private bin if it exists
  20. if [ -d "$HOME/bin" ] ; then
  21.     PATH="$HOME/bin:$PATH"
  22. fi
  23.  
  24. export TEST_HOME=/home/xavi/Downloads
  25. export TEST=$TEST_HOME/thing
  26.  
  27. export ANDROID_HOME=/usr/share/android-sdk/android-sdk-linux
  28. export ANDROID_SDK_ROOT=$ANDROID_HOME
  29. export PATH="$PATH:$ANDROID_HOME:$ANDROID_HOME/platforms:$ANDROID_HOME/platform-tools:$ANDROID_HOME/build-tools$ANDROID_HOME/tools$ANDROID_HOME/sources:$ANDROID_HOME/add-ons"
RAW Paste Data
Top