Sneha: I pledge on Gita that I have not given or received any unauthorised assistance on this assignment or any previous task.
Krati: I pledge on Gita that I have not given or received any unauthorised assistance on this assignment or any previous task.
Divya: I pledge on Gita that I have not given or received any unauthorised assistance on this assignment or any previous task.
Citations:
Task A:
If a command is typed with an incorrect spelling of a directory component, bash corrects minor errors in the spelling. This is accomplished by checking for the following possible errors: transposed characters, a missing character and a character too many. If a correction is found, the corrected path is printed, and the command proceeds. On hitting tab, bash suggests possible completions of the command. The actual completion performed is specific to the application. Bash attempts completion treating the text as a variable (if the text begins with ‘$’), username (if the text begins with ‘~’), hostname (if the text begins with ‘@’), or command (including aliases and functions) in turn. If none of these produces a match, bash attempts completion regarding the incomplete text as a filename.