You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
2. to execute in a shell script use as exec `alias ll="ls |wc -l"`
3. to add the alias into bashrc file(perminent) use echo "alias ll='ls | wc -l' >> /etc/bashrc" , after executing the script then run source /etc/bashrc to make effect of the added new command.