DzenIT

HOME ZEN IT SOFT APK LIVE GAME OTHER W CONTACT SEARCH

Add alias in Termux

follow these steps:

  • Open the Termux app.
  • Run the following command to open the bash profile file in the nano text editor:
  • nano ~/.bashrc

    Scroll to the end of the file and add the following line to define your alias:

    alias =''

    For example, if you want to create an alias for the ls command, add the following line:

    alias ll='ls -l'
  • Save the file by pressing Ctrl + X then Y and then Enter.
  • Close and reopen the Termux app to apply the changes, or run the following command to reload the bash profile file:
  • source ~/.bashrc

    Now you can use the alias by typing its name in the Termux terminal.