linux can i use alias in shell script code example
Example 1: how to add alias in linux
alias l="ls -al"
Example 2: will bash script use alias
# cat script.sh
#!/bin/bash
# Script to check the alias output
shopt -s expand_aliases
alias ls1='ls -lrt'
ls1