From /etc/passwd, list each unique login shell on its own line, sorted, into /tmp/shells.txt.
`/etc/passwd` uses `:` as a delimiter; the login shell is the 7th field.
Cut the 7th field, sort uniquely, and write to `/tmp/shells.txt`. Expected:
```
/bin/bash
/usr/sbin/nologin
```
Sign in to save your code and track progress across devices.