% nbpreview --theme material notebook.ipynb
     ╭────────────────────────────────────────────────────────────────────────╮
[ ]:%%bash                                                                 │
     │ for file in *.csv; do                                                  │
     │     echo "$file"                                                       │
     │     awk -F ',' '{print $5}' "$file" | sort | uniq -c                   │
     │ done                                                                   │
     ╰────────────────────────────────────────────────────────────────────────╯