IT 244: Introduction to Linux/Unix
Class 21 Ungraded Quiz
-
What does Bash do when it performs history expansion?
-
What does Bash do when it performs alias substitution?
-
Write the command you would use to create the files foo1.txt to foo5.txt
using brace expansion and the
touch
command.
-
What does Bash do when it performs tilde (~) expansion?
-
What does Bash do when it performs parameter and variable expansion?
-
What does Bash do when it performs arithmetic expansion?
-
What does Bash do when it performs command substitution?
-
What would you write at the command line to define the alias
ll
whose value was
ls -l
?
-
Can an alias be made global?
-
Can a function be made global?