Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add instructions to persist alias on terminal reload #103

Merged
merged 1 commit into from
Jan 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions efsity/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ If you are using a linux environment e.g. bash you can choose to create an _alia

`alias fct='java -jar ~/Downloads/efsity-<version>.jar'`

To make sure that the alias persists on reload, add the alias to the `.bashrc` file in your `home` directory (you may not see it but you can check if it exists by running the below command). <br>
`vim .bashrc`

Add the alias shown above in the file then run `source .bashrc` to update the alias globally. Run `alias fct` to confirm that the alias was updated.

To run the previous help command you can then run `fct -h` in your terminal.

The rest of the documentation will assume you have configured an _alias_ for running the efsity jar with alias name `fct` as above.
Expand Down