diff options
author | Marc Pervaz Boocha <mboocha@sudomsg.xyz> | 2024-01-29 14:32:38 +0530 |
---|---|---|
committer | Marc Pervaz Boocha <mboocha@sudomsg.xyz> | 2024-01-29 14:32:38 +0530 |
commit | f390f01c67b92b4c4f520e8c64fc518beb235f90 (patch) | |
tree | 30cd2cf2ae4dac5a56a8342ac851539d059fb2bc /.bash_profile | |
parent | Initial Commit (diff) | |
download | dotfiles-f390f01c67b92b4c4f520e8c64fc518beb235f90.tar dotfiles-f390f01c67b92b4c4f520e8c64fc518beb235f90.tar.gz dotfiles-f390f01c67b92b4c4f520e8c64fc518beb235f90.tar.bz2 dotfiles-f390f01c67b92b4c4f520e8c64fc518beb235f90.tar.lz dotfiles-f390f01c67b92b4c4f520e8c64fc518beb235f90.tar.xz dotfiles-f390f01c67b92b4c4f520e8c64fc518beb235f90.tar.zst dotfiles-f390f01c67b92b4c4f520e8c64fc518beb235f90.zip |
Probally Should update more often
Diffstat (limited to '')
-rw-r--r-- | .bash_profile | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/.bash_profile b/.bash_profile index 82ea3c8..ad8dc45 100644 --- a/.bash_profile +++ b/.bash_profile @@ -1,9 +1,6 @@ -#!/bin/bash -l +# +# ~/.bash_profile +# -for i in ~/.profile ~/.bashrc -do - if test -f "$i" - then - . "$i" - fi -done +[[ -f ~/.profile ]] && . ~/.profile +[[ -f ~/.bashrc ]] && . ~/.bashrc |