.profile 1022 B

1234567891011121314151617181920212223242526
  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. # the default umask is set in /etc/profile; for setting the umask
  7. # for ssh logins, install and configure the libpam-umask package.
  8. #umask 022
  9. # if running bash
  10. if [ -n "$BASH_VERSION" ]; then
  11. # include .bashrc if it exists
  12. if [ -f "$HOME/.bashrc" ]; then
  13. . "$HOME/.bashrc"
  14. fi
  15. fi
  16. # set PATH so it includes user's private bin if it exists
  17. if [ -d "$HOME/bin" ] ; then
  18. PATH="$HOME/bin:$PATH"
  19. fi
  20. [ -d /opt/gcc-arm-none-eabi-6-2017-q2-update/bin ] && export PATH=/opt/gcc-arm-none-eabi-6-2017-q2-update/bin:$PATH
  21. [ -d /home/fdamstra/ardupilot/Tools/autotest ] && export PATH=/home/fdamstra/ardupilot/Tools/autotest:$PATH
  22. [ -f $HOME/.cargo/env ] && . "$HOME/.cargo/env"
  23. [ -f /opt/homebrew/bin/brew ] && eval "$(/opt/homebrew/bin/brew shellenv)"