Linux CLI - Environment and Configuration
Which of the following is the correct syntax to create an alias named
ll for ls -l in your shell setup?ll for ls -l in your shell setup?alias followed by the name, an equals sign, and the command in single quotes.export which is for variables, not aliases. alias ll=ls -l misses quotes, causing syntax errors. set alias ll='ls -l' uses an invalid command.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions