Which shell built-in command can be used to create a shortcut or pseudonym for a longer
command? Assume a modern bournE.like shell, such as bash.
A.
shortcut
B.
In
C.
sudo
D.
link
E.
alias
Explanation:
Alias command is used to create like shortcut of long command.Example: alias back=”tar -cvf mytar.tar /root/*”, here back will be the alias (shortcut) of complete
“tar -cvf mytar.tar/root/*” command.