Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

For one thing, it allows your pipeline to both read from and write to the same file, as it defers the output until there is no more data to read from "upstream". For instance, this won't work (it truncates the file for writing before it is ever read):

    grep foo <some_file >some_file
But this will have the intended effect:

    grep foo <some_file | sponge some_file


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: