[text] .profile

Viewer

copydownloadembedprintName: .profile
  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. # set PATH so it includes user's private bin if it exists
  25. if [ -d "$HOME/.local/bin" ] ; then
  26.     PATH="$HOME/.local/bin:$PATH"
  27. fi
  28.  
  29. export PATH=$PATH:/opt/maven/bin
  30.  
  31. export JAVA_HOME=/opt/jdk1.8.0_111
  32. export PATH=$MAVEN_HOME/bin:$JAVA_HOME/bin:$PATH
  33. export MAVEN_HOME=/home/sts/maven/apache-maven-3.2.5
  34.  
  35. export ANDROID_HOME=/home/sts/Android/Sdk
  36. export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/emulator
  37. export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/tools
  38. export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/tools/bin
  39. export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools
  40.  
  41. export FLUTTER_HOME=/home/sts/flutter
  42. export PATH=$PATH:$FLUTTER_HOME/bin
  43.  
  44. export PATH=$PATH:/home/sts/gradle-6.4-all/gradle-6.4/bin
  45.  

Editor

You can edit this paste and save as new:


File Description
  • .profile
  • Paste Code
  • 20 Sep-2021
  • 1.41 Kb
You can Share it: