Loading .bash_completion 0 → 100644 +15 −0 Original line number Diff line number Diff line # ~/.bash_completion: user's completion snippets # Protect user's bash_logout code file from changes and views chmod -c a-wx,og-r,u+r "$HOME/.bash_completion" # Source user's private bash completion code snippets if they exist if [ -d "$HOME/.bash_completion.d" ]; then chmod -Rc og-rwx,u+rwX "$HOME/.bash_completion.d" for i in $HOME/.bash_completion.d/*; do if [ -r "$i" ]; then . "$i" fi done unset i fi .bash_logout +1 −1 Original line number Diff line number Diff line Loading @@ -6,7 +6,7 @@ chmod -c a-wx,og-r,u+r "$HOME/.bash_logout" # Source user's private bashrc code snippets if they exist if [ -d "$HOME/.bash_logout.d" ]; then chmod -Rc og-rwx,u+rwX "$HOME/.bash_logout.d" for i in $HOME/.bash_logout.d/*.sh; do for i in $HOME/.bash_logout.d/*; do if [ -r "$i" ]; then . "$i" fi Loading .bashrc +2 −2 Original line number Diff line number Diff line Loading @@ -14,9 +14,9 @@ chmod -c a-wx,og-r,u+r "$HOME/.bashrc" # Source user's private bashrc code snippets if they exist if [ -d "$HOME/.bashrc.d" ]; then chmod -Rc og-rwx,u+rwX "$HOME/.bashrc.d" for i in $HOME/.bashrc.d/*.sh; do for i in $HOME/.bashrc.d/*; do if [ -r "$i" ]; then source "$i" . "$i" fi done unset i Loading .profile +1 −1 Original line number Diff line number Diff line Loading @@ -10,7 +10,7 @@ chmod -c a-wx,og-r,u+r "$HOME/.profile" # Source user's private profile code snippets if they exist if [ -d "$HOME/.profile.d" ]; then chmod -Rc og-rwx,u+rwX "$HOME/.profile.d" for i in $HOME/.profile.d/*.sh; do for i in $HOME/.profile.d/*; do if [ -r "$i" ]; then . "$i" fi Loading Loading
.bash_completion 0 → 100644 +15 −0 Original line number Diff line number Diff line # ~/.bash_completion: user's completion snippets # Protect user's bash_logout code file from changes and views chmod -c a-wx,og-r,u+r "$HOME/.bash_completion" # Source user's private bash completion code snippets if they exist if [ -d "$HOME/.bash_completion.d" ]; then chmod -Rc og-rwx,u+rwX "$HOME/.bash_completion.d" for i in $HOME/.bash_completion.d/*; do if [ -r "$i" ]; then . "$i" fi done unset i fi
.bash_logout +1 −1 Original line number Diff line number Diff line Loading @@ -6,7 +6,7 @@ chmod -c a-wx,og-r,u+r "$HOME/.bash_logout" # Source user's private bashrc code snippets if they exist if [ -d "$HOME/.bash_logout.d" ]; then chmod -Rc og-rwx,u+rwX "$HOME/.bash_logout.d" for i in $HOME/.bash_logout.d/*.sh; do for i in $HOME/.bash_logout.d/*; do if [ -r "$i" ]; then . "$i" fi Loading
.bashrc +2 −2 Original line number Diff line number Diff line Loading @@ -14,9 +14,9 @@ chmod -c a-wx,og-r,u+r "$HOME/.bashrc" # Source user's private bashrc code snippets if they exist if [ -d "$HOME/.bashrc.d" ]; then chmod -Rc og-rwx,u+rwX "$HOME/.bashrc.d" for i in $HOME/.bashrc.d/*.sh; do for i in $HOME/.bashrc.d/*; do if [ -r "$i" ]; then source "$i" . "$i" fi done unset i Loading
.profile +1 −1 Original line number Diff line number Diff line Loading @@ -10,7 +10,7 @@ chmod -c a-wx,og-r,u+r "$HOME/.profile" # Source user's private profile code snippets if they exist if [ -d "$HOME/.profile.d" ]; then chmod -Rc og-rwx,u+rwX "$HOME/.profile.d" for i in $HOME/.profile.d/*.sh; do for i in $HOME/.profile.d/*; do if [ -r "$i" ]; then . "$i" fi Loading