Sort scores numerically, save the sorted list to /tmp/sorted.txt with tee, and pipe onward to print only the smallest.
Use `tee` to fork a pipeline. Sort `/home/user/data/scores.txt` numerically, tee the result into `/tmp/sorted.txt`, then pipe onward through `head -n 1` so the terminal prints only the smallest value (`3`).
After running, `/tmp/sorted.txt` must contain all 10 scores ascending.
Sign in to save your code and track progress across devices.