Term
| The _____ command will convert an existing local variable into an environment variable. |
|
Definition
|
|
Term
| What command will take the standard output of the cal command and place it the file /home/bob/cal_output (include the entire command line). |
|
Definition
| cal > /home/bob/cal_output |
|
|
Term
| The ____ command will allow you to merge two files together. |
|
Definition
|
|
Term
| Bob has a file named report.txt that contains tab characters. He needs to convert all tabs to 5 spaces. What command line will perform this action and place the results in a file called final.txt |
|
Definition
| expand -t 5 report.txt > final.txt |
|
|