Stop showing files being loaded

This commit is contained in:
Anthony Rose 2022-08-23 13:53:19 +01:00
parent 1d656e8bd8
commit 32521dd7c6
3 changed files with 0 additions and 4 deletions

View file

@ -1,7 +1,6 @@
#!/bin/bash #!/bin/bash
case "$-" in case "$-" in
*i*) *i*)
echo "[ Reading \"$HOME/.bashrc\" ]"
;; ;;
*) *)
# Shell is not interactive. # Shell is not interactive.

View file

@ -1,13 +1,11 @@
#!/bin/sh #!/bin/sh
if [ -n "$_acp_ignore_shrc" ] if [ -n "$_acp_ignore_shrc" ]
then then
echo "[ Ignoring \"$HOME/.shrc\" ]"
return 1 return 1
fi fi
case "$-" in case "$-" in
*i*) *i*)
echo "[ Reading \"$HOME/.shrc\" ]"
;; ;;
*) *)
# Shell is not interactive. # Shell is not interactive.

View file

@ -1,7 +1,6 @@
#!/bin/zsh #!/bin/zsh
case "$-" in case "$-" in
*i*) *i*)
echo "[ Reading \"$HOME/.zshrc\" ]"
;; ;;
*) *)
# Shell is not interactive. # Shell is not interactive.