I am moving from Fedora to Ubuntu.
In Fedora , running "which AliasName" shows the alias.
For example, if I have
$alias myAlias='echo test'
$which myAlias
alias myAlias='echo test'
/usr/bin/echo
In Ubuntu, this does not work.
After:
alias myAlias='echo test'
Runnin:
$which myAlias
shows nothing.
Any idea - is there any setting or any way to get the same result as in Fedora ?