What is the order of precedence that will run in the shell?
What does something like [0-9]{2}
Matches two digit numbers ie 00 -> 99
{2} is a quantifier that specifices that the pattern needs to match twice
Where are public keys located in arch directory?
~/.ssh/authorized_keys
How do you ignore case sensitivity while using grep?
-i flag
How would you search the current directory with find?
.
What will happen if you run var = foo?
Because of how linux tokenizes inputs, it will read var first thinking that its alone before moving on to equal