···11+#!/usr/bin/env bash
22+# make utility scripts at ./bin directory available via direnv
33+export PATH="${PATH}:${PWD}/bin"
-27
.profile
···11-# ~/.profile: executed by the command interpreter for login shells.
22-# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
33-# exists.
44-# see /usr/share/doc/bash/examples/startup-files for examples.
55-# the files are located in the bash-doc package.
66-77-# the default umask is set in /etc/profile; for setting the umask
88-# for ssh logins, install and configure the libpam-umask package.
99-#umask 022
1010-1111-# if running bash
1212-if [ -n "$BASH_VERSION" ]; then
1313- # include .bashrc if it exists
1414- if [ -f "$HOME/.bashrc" ]; then
1515- . "$HOME/.bashrc"
1616- fi
1717-fi
1818-1919-# set PATH so it includes user's private bin if it exists
2020-if [ -d "$HOME/bin" ] ; then
2121- PATH="$HOME/bin:$PATH"
2222-fi
2323-2424-# set PATH so it includes user's private bin if it exists
2525-if [ -d "$HOME/.local/bin" ] ; then
2626- PATH="$HOME/.local/bin:$PATH"
2727-fi