An open API service indexing awesome lists of open source software.

https://github.com/ane/pdu

Parallel experiment of the unix "du -sh ." command.
https://github.com/ane/pdu

Last synced: about 1 year ago
JSON representation

Parallel experiment of the unix "du -sh ." command.

Awesome Lists containing this project

README

          

pdu
===

Parallel experiment of the unix "du -sh" command.

It works by taking a directory listing of some directory and then recursively
running itself in parallel on all subdirectories, and pretty printing the output
(hence 'sh').

The point of the experiment that in Haskell parallellization can be turned off
by using just `mapM` instead of `MP.mapM`.