Alias physical location.

Hi All,

Please let me know where are the below Aliases are stored.


alias l.='ls -d .* --color=tty'
alias ll='ls  -l --color=tty'
alias ls='ls --color=tty'

I tried searching it in my .bashrc and /etc/bashrc files but could not find :frowning: .

Your help is much appreciated.

I am using "Linux" and my shell is "bash"

Thanks in advance
Manu.

Some aliases can be find in these location

/etc/profile ,~/.bashrc , ~/.bash_profile

The rest u can find in your root directory

[vikram@lg105m 00:10 ~]$ vi myalias

Hi Vikram,

Thanks for you reply... but no alias is stored on all the above three files mentioned by you.
And also what is

vi myalias

?

Thanks,
Manu

Actually here

myalias

is the name given to our manual alias file.

Use

 locate alias l.='ls -d .* --color=tty'

from root directory. You will be able to find the path.

1 Like

man bash :

1 Like