Merge pull request #51 from kkrusher/polish_readme

Correct the configuration to define alias in the shell
This commit is contained in:
Daniel Miessler 2024-02-08 11:24:29 -08:00 committed by GitHub
commit 4abfb46b2c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -148,7 +148,7 @@ pip3 install -r requirements.txt
```bash
# Tell your shell how to find the `fabric` client
echo 'alias fabric="/the/path/to/fabric/client" >> .bashrc'
echo 'alias fabric="/the/path/to/fabric/client/fabric"' >> ~/.bashrc
# Example of ~/.zshrc or ~/.bashrc
alias fabric="~/Development/fabric/client/fabric"
```
@ -157,9 +157,9 @@ alias fabric="~/Development/fabric/client/fabric"
```bash
# Make sure you can
echo 'alias fabric="/the/path/to/fabric/client" >> .bashrc'
echo 'alias fabric="/the/path/to/fabric/client/fabric"' >> ~/.bashrc
# Example
echo 'alias fabric="~/Development/fabric/client/fabric" >> .zshrc'
echo 'alias fabric="~/Development/fabric/client/fabric"' >> ~/.zshrc
```
### Using the `fabric` client