To list the current aliases in your shell session, you can simply use the alias command without any arguments. Just type:
alias
This will display all the currently defined aliases along with their corresponding commands.
If you want to see a specific alias, you can use:
alias alias_name
For example, to check the alias for ll, you would run:
alias ll
This will show you the command that the alias ll represents.
