alias

  1. M

    Alias Does Not Work In Shell Script

    When I tried to use alias in shell script, it didn't work. This will clearify what I mean:- #!/bin/bash alias hello='echo Hello, how are you?' hello #end of shell script If this shell script is run it will give an error message stating that the command hello was not found...
Top Bottom