Use sort with the right flag to get distinct colors into /tmp/unique_colors.txt.
`sort -u` does the work of `sort | uniq` in one step. Write the distinct colors from `/home/user/data/colors.txt`, alphabetically, into `/tmp/unique_colors.txt`.
Expected file content:
```
blue
green
red
yellow
```
Sign in to save your code and track progress across devices.