Este site funciona melhor com JavaScript.
Página inicial
Explorar
Ajuda
Acessar
10sr
/
dotfiles-mirror
espelhamento de
https://github.com/10sr/dotfiles.git
Observar
1
Favorito
0
Fork
0
Código
Issues
0
Versões
0
Wiki
Atividade
Ver código fonte
fix to use builtin when in bash
pull/1/head
10sr
11 anos atrás
pai
992bf4bc5b
commit
1e5ee7cecf
1 arquivos alterados
com
11 adições
e
19 exclusões
Visão dividida
Opções de diferenças
Mostrar estatísticas
Baixar arquivo de patch
Baixar arquivo de diferenças
+11
-19
shrc
+ 11
- 19
shrc
Ver arquivo
@@ -367,25 +367,17 @@ then
test -x /usr/bin/locate && alias locate="/usr/bin/locate"
fi
if $inzsh
then
# somehow not work
# typeset -ga chpwd_functions
# chpwd_functions+=pwd
# chpwd(){
# pwd
# }
cd(){
builtin cd "$@"
pwd
}
else
cd(){
command cd "$@"
pwd
}
fi
# somehow not work
# typeset -ga chpwd_functions
# chpwd_functions+=pwd
# chpwd(){
# pwd
# }
cd(){
builtin cd "$@"
pwd
}
# pad
alias pad=notepad
Escrever
Pré-visualização
Carregando…
Cancelar
Salvar