https://github.com/azagramac/bashrc-for-debian-macos
https://github.com/azagramac/bashrc-for-debian-macos
bash-pro bashrc linux macos prompt terminal
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/azagramac/bashrc-for-debian-macos
- Owner: azagramac
- Created: 2025-09-19T22:46:12.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2025-09-19T23:07:39.000Z (10 months ago)
- Last Synced: 2025-12-01T09:01:21.251Z (7 months ago)
- Topics: bash-pro, bashrc, linux, macos, prompt, terminal
- Language: Shell
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Capturas de pantalla
| Terminal MacOS | Terminal Linux |
|----------------|----------------|
|
`.bash_profile` |
`.bashrc` |
---
## Aplicar la configuración
### 🐧 Linux
1. Copia el archivo `.bashrc` a tu home `/home/$USER/`:
```bash
cp .bashrc ~/
```
2. Recarga la configuración sin cerrar la terminal:
```bash
source ~/.bashrc
```
---
### 🍎 MacOS
1. Cambiar la shell por defecto a Bash
```bash
chsh -s /bin/bash
```
> Esto cambiará tu shell de login a bash.
> Debes cerrar la sesión y volver a abrirla (o reiniciar la terminal) para que tenga efecto.
2. Copia el archivo `.bash_profile` a tu home `/Users/$USER/`:
```bash
cp .bash_profile ~/
```
3. Recarga la configuración sin cerrar la terminal:
```bash
source ~/.bash_profile
```
4. Para eliminar el mensaje `Last login:` al abrir la terminal (opcional):
```bash
touch ~/.hushlogin
```