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.
- Host: GitHub
- URL: https://github.com/ane/pdu
- Owner: ane
- Created: 2014-12-21T07:53:06.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2014-12-21T08:09:01.000Z (over 11 years ago)
- Last Synced: 2025-02-13T01:56:54.291Z (over 1 year ago)
- Language: Haskell
- Size: 145 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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`.