alias is ksh

Hello,

I am trying to create alias in ksh.

alias m=main.ksh

It's working just fine but when I log out from my session and relogin the alias is gone.

How can i create a permanent alias?

Thanks...

Set it in your .profile

alias m='/path/to/script'

Logout and login again to permanently set it in your environment.