dotfiles

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README

commit d12546fa1d0d7b6f56c39ae0325e3244d3386e89
parent 1694b73eb9871625546cc1af7da24d6399484431
Author: Pablo Cárdenas <pablo.cardenas@imca.edu.pe>
Date:   Thu,  9 May 2024 19:55:45 -0500

bash: fixed  en bashrc

Diffstat:
M.bashrc | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.bashrc b/.bashrc @@ -39,7 +39,7 @@ cd() { echo "Use pushd!"; } man() { if [[ $1 == -* || $1 == [1-9]* || $1 == n ]] ; then - command man $@ + command man "$@" else echo "Specify section" return 1 @@ -57,7 +57,7 @@ git() { echo " - git read-tree -m" echo " - git update-index --add --remove --cacheinfo 100644 sha1 filename" else - command git $@ + command git "$@" fi }