New Files

This commit is contained in:
2025-06-19 15:10:32 +03:00
parent 9404c68a01
commit cef2d382a9
116 changed files with 2638 additions and 0 deletions

View File

@ -0,0 +1,23 @@
# ~/.bashrc
# The individual per-interactive-shell startup file.
# Source global definitions.
if [ -r /etc/bashrc ]; then
. /etc/bashrc
fi
# User specific environment
if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]; then
PATH="$HOME/.local/bin:$HOME/bin:$PATH"
fi
export PATH
# User specific aliases and functions
if [ -d ~/.bashrc.d ]; then
for rc in ~/.bashrc.d/*; do
if [ -f "$rc" ]; then
. "$rc"
fi
done
fi
unset rc