Term
| _______ are alternate names for existing commands. |
|
Definition
|
|
Term
What will the following do? alias cat='more' |
|
Definition
| This will execute the cat command as the more command |
|
|
Term
| Use the ______ command to remove an assigned alias. |
|
Definition
|
|
Term
| True or False: The following will properly ignore an alias (assuming there is one assigned). \cat /etc/hosts |
|
Definition
| True (use the \ before a command will ignore an alias |
|
|
Term
| The _____ command will determine an alias corresponds to. |
|
Definition
|
|
Term
| The ______ file (full path) is executed upon log-on and defines common environmental variables such as HOME and PATH. |
|
Definition
|
|
Term
| True of False: /etc/profile defines environmental variables specific to the user logged on. |
|
Definition
| False: /etc/profiles will be for all users |
|
|
Term
| Identify the three common environment files (full path) in the BASH environment. |
|
Definition
/etc/profile ~/.bash_profile or ~/.bash_login or ~/.profile ~/.bash.rc |
|
|
Term
| You can specify commands to run when you log out by editing the ________ file in your home directory. |
|
Definition
|
|