Question: Write a simple sorting utility sort. The sort command takes a filename as a parameter, and the file contains one item per line. By default the lines are considered strings and are sorted by normal lexicographic order (in a case-sensitive manner). Add two options: The -c option means that the sort should be case insensitive; the -n option means that the lines are to be considered integers for the purpose of the sort.