Write a script that accepts two arguments, the firs represents a prefix string, the second a path (assume that it is an absolute path). Where the script you write must do the following
If the user inputs only one argument that is the prefix string, then it must display the list of all files that have names starting with the prefix; within the working directory. If the user inputs two arguments, that are the prefix string and a path. Then the scrip displays the list of all directories that have names starting with the prefix; within the path specified by the second argument. Note that the script must return the value of the working directory to be that before running the script.