Answers for "find alias statement in linux"

2

get value of an alias in bash

type alias_name
# example:
type ls
# ls is aliased to `ls --color=auto'
Posted by: Guest on August-10-2021
0

linux show alias function

type aliasname

Example:

$ alias ls="ls --color=auto";
$ type ls
ls is aliased to `ls --color=auto'
Posted by: Guest on November-28-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language