Skip to content

Commit

Permalink
docs: add instructions for setting an alias for the move2kube comma…
Browse files Browse the repository at this point in the history
…nd in the shell (#1139)

docs: add instructions for setting an alias for the move2kube command in the shell

Signed-off-by: sanket <telisanket2002@gmail.com>
  • Loading branch information
Sanket-0510 authored Mar 21, 2024
1 parent fd897df commit 03e702f
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,23 @@ To browse code [![Open in VSCode](https://badgen.net/badge/icon/Visual%20Studio
* OpenShift Templates
* Docker compose

## Some Useful Configuration
You can set an alias for move2kube to make it more convenient to use. The following command allows you to refer to move2kube as m2k for the current terminal session:

```
alias m2k="move2kube"
```
### To configure it globally:
To keep aliases between sessions, you can save them in your user’s shell configuration profile file

#### Bash (.bashrc or .bash_profile)
```
echo 'alias m2k="move2kube"' >> ~/.bashrc
source ~/.bashrc
```

## Discussion

* For any questions reach out to us on any of the communication channels given on our website https://move2kube.konveyor.io/

0 comments on commit 03e702f

Please sign in to comment.