3. Create a file name reversenames.txt by sorting, in reverse, the file we used in class named morefile.txt. code example
Example: sorting output bash
# Use sort command
input_text | sort
# or
input_text | sort -r
# For reverse
# Use sort command
input_text | sort
# or
input_text | sort -r
# For reverse