zevv / duc

Dude, where are my bytes: Duc, a library and suite of tools for inspecting disk usage
GNU Lesser General Public License v3.0
598 stars 79 forks source link

Using cgi --list #286

Open tobygallo opened 2 years ago

tobygallo commented 2 years ago

When using cgi --list, is it possible to sort by filename as opposed to file size? Thanks

l8gravely commented 2 years ago

Toby> When using cgi --list, is it possible to sort by filename as opposed to file size? Thanks

Currently, no, it's not possible. We do have the infrastructure in place for doing this type of sorting, it's just not exposed to the CGI script.

Can you please open a request at github so we don't forget to look at this down the road?

Or if you look at duc/src/duc/cmd-cgi.c and cmd-ls.c for the DUCSORT* flags, you'll get an idea of what needs to be done. I need to think how we would pass that flag into the CGI script properly.

John