#!/bin/bash

head -n 2 notes.txt
tail -n 4 notes.txt | sort -k2n | nl
 
