Sort the sortedholidays.txt file by the day (1, 2 ,3,4 etc.) Sort the data based on the numbers 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