Integrates Ubuntu 24.04LTS default bash config and fixes anonymous functions to work properly in bash.

This commit is contained in:
Tom Hicks
2024-09-30 14:16:46 -07:00
parent 7dbc649489
commit 436baf3241
13 changed files with 231 additions and 18 deletions

View File

@@ -13,3 +13,22 @@
# /etc/zlogin
# ~/.zlogin
##fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi
## ZSH version of this
# # if running bash
# if [ -n "$BASH_VERSION" ]; then
# # include .bashrc if it exists
# if [ -f "$HOME/.bashrc" ]; then
# . "$HOME/.bashrc"
# fi
# fi