sponge (1) Linux Manual Page
sponge – soak up standard input and write to a file
Synopsis
- sed ‘…’ file | grep ‘…’ | sponge [-a] file
Description
spongesponge preserves the permissions of the output file if it already exists.
When possible, sponge creates or updates the output file atomically by renaming a temp file into place. (This cannot be done if TMPDIR is not in the same filesystem.)
If the output file is a special file or symlink, the data will be written to it, non-atomically.
If no file is specified, sponge outputs to stdout.
Options
-a- Replace the file with a new file that contains the file’s original content, with the standard input appended to it. This is done atomically when possible.
