Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
lmtreser committed Jun 3, 2024
1 parent 23b8c57 commit d7eb5c9
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,25 @@ sudo systemctl enable miprograma.service
```bash
sudo systemctl start miprograma.service
```
## Agregar un directorio al PATH

Para agregar un directorio al PATH, para BASH:

```bash
nano ~/.bashrc
export PATH=$PATH:/ruta/a/tu/directorio
source ~/.bashrc
echo $PATH
```

Para agregar un directorio al PATH, para ZSH:

```bash
nano ~/.zshrc
export PATH=$PATH:/ruta/a/tu/directorio
source ~/.zshrc
echo $PATH
```

## Problemas conocidos

Expand Down

0 comments on commit d7eb5c9

Please sign in to comment.