How does sponge (from moreutils) work?











up vote
1
down vote

favorite
1












sponge can “soak up” stdin and write it atomically to a file, enabling one to do cat f|sponge a. I want to know how exactly it accomplishes this. How does it know when the input is finished?










share|improve this question




















  • 2




    What do you mean? The same way every other program knows (e.g. cat f | wc or cat f | grep foo or whatever), why would you expect sponge to be special?
    – terdon
    yesterday















up vote
1
down vote

favorite
1












sponge can “soak up” stdin and write it atomically to a file, enabling one to do cat f|sponge a. I want to know how exactly it accomplishes this. How does it know when the input is finished?










share|improve this question




















  • 2




    What do you mean? The same way every other program knows (e.g. cat f | wc or cat f | grep foo or whatever), why would you expect sponge to be special?
    – terdon
    yesterday













up vote
1
down vote

favorite
1









up vote
1
down vote

favorite
1






1





sponge can “soak up” stdin and write it atomically to a file, enabling one to do cat f|sponge a. I want to know how exactly it accomplishes this. How does it know when the input is finished?










share|improve this question















sponge can “soak up” stdin and write it atomically to a file, enabling one to do cat f|sponge a. I want to know how exactly it accomplishes this. How does it know when the input is finished?







shell io-redirection stdout stdin






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited yesterday









Jeff Schaller

36.3k952120




36.3k952120










asked yesterday









HappyFace

27111




27111








  • 2




    What do you mean? The same way every other program knows (e.g. cat f | wc or cat f | grep foo or whatever), why would you expect sponge to be special?
    – terdon
    yesterday














  • 2




    What do you mean? The same way every other program knows (e.g. cat f | wc or cat f | grep foo or whatever), why would you expect sponge to be special?
    – terdon
    yesterday








2




2




What do you mean? The same way every other program knows (e.g. cat f | wc or cat f | grep foo or whatever), why would you expect sponge to be special?
– terdon
yesterday




What do you mean? The same way every other program knows (e.g. cat f | wc or cat f | grep foo or whatever), why would you expect sponge to be special?
– terdon
yesterday










1 Answer
1






active

oldest

votes

















up vote
3
down vote



accepted










strace or similar will show the system calls used by sponge, which is probably to write(2) the input read(2) from standard input out to a temporary file, and then to rename(2) that temporary file to the desired output filename when the input ends. The input ends when a read(2) call fails or returns 0 (which indicates end-of-file) at which point sponge can do the rename.






share|improve this answer























  • And when the rename() fails with EXDEV when /tmp is on a different file system, it ends up copying the data again into the destination file. You can avoid that by setting TMPDIR to $(dirname target-file) or use ksh93's >; operator instead of sponge which does that automatically (and also doesn't override the target file if the redirected command failed).
    – Stéphane Chazelas
    yesterday












  • >; ? mind blown.
    – glenn jackman
    13 hours ago











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














 

draft saved


draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f483524%2fhow-does-sponge-from-moreutils-work%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes








up vote
3
down vote



accepted










strace or similar will show the system calls used by sponge, which is probably to write(2) the input read(2) from standard input out to a temporary file, and then to rename(2) that temporary file to the desired output filename when the input ends. The input ends when a read(2) call fails or returns 0 (which indicates end-of-file) at which point sponge can do the rename.






share|improve this answer























  • And when the rename() fails with EXDEV when /tmp is on a different file system, it ends up copying the data again into the destination file. You can avoid that by setting TMPDIR to $(dirname target-file) or use ksh93's >; operator instead of sponge which does that automatically (and also doesn't override the target file if the redirected command failed).
    – Stéphane Chazelas
    yesterday












  • >; ? mind blown.
    – glenn jackman
    13 hours ago















up vote
3
down vote



accepted










strace or similar will show the system calls used by sponge, which is probably to write(2) the input read(2) from standard input out to a temporary file, and then to rename(2) that temporary file to the desired output filename when the input ends. The input ends when a read(2) call fails or returns 0 (which indicates end-of-file) at which point sponge can do the rename.






share|improve this answer























  • And when the rename() fails with EXDEV when /tmp is on a different file system, it ends up copying the data again into the destination file. You can avoid that by setting TMPDIR to $(dirname target-file) or use ksh93's >; operator instead of sponge which does that automatically (and also doesn't override the target file if the redirected command failed).
    – Stéphane Chazelas
    yesterday












  • >; ? mind blown.
    – glenn jackman
    13 hours ago













up vote
3
down vote



accepted







up vote
3
down vote



accepted






strace or similar will show the system calls used by sponge, which is probably to write(2) the input read(2) from standard input out to a temporary file, and then to rename(2) that temporary file to the desired output filename when the input ends. The input ends when a read(2) call fails or returns 0 (which indicates end-of-file) at which point sponge can do the rename.






share|improve this answer














strace or similar will show the system calls used by sponge, which is probably to write(2) the input read(2) from standard input out to a temporary file, and then to rename(2) that temporary file to the desired output filename when the input ends. The input ends when a read(2) call fails or returns 0 (which indicates end-of-file) at which point sponge can do the rename.







share|improve this answer














share|improve this answer



share|improve this answer








edited yesterday

























answered yesterday









thrig

23.6k12955




23.6k12955












  • And when the rename() fails with EXDEV when /tmp is on a different file system, it ends up copying the data again into the destination file. You can avoid that by setting TMPDIR to $(dirname target-file) or use ksh93's >; operator instead of sponge which does that automatically (and also doesn't override the target file if the redirected command failed).
    – Stéphane Chazelas
    yesterday












  • >; ? mind blown.
    – glenn jackman
    13 hours ago


















  • And when the rename() fails with EXDEV when /tmp is on a different file system, it ends up copying the data again into the destination file. You can avoid that by setting TMPDIR to $(dirname target-file) or use ksh93's >; operator instead of sponge which does that automatically (and also doesn't override the target file if the redirected command failed).
    – Stéphane Chazelas
    yesterday












  • >; ? mind blown.
    – glenn jackman
    13 hours ago
















And when the rename() fails with EXDEV when /tmp is on a different file system, it ends up copying the data again into the destination file. You can avoid that by setting TMPDIR to $(dirname target-file) or use ksh93's >; operator instead of sponge which does that automatically (and also doesn't override the target file if the redirected command failed).
– Stéphane Chazelas
yesterday






And when the rename() fails with EXDEV when /tmp is on a different file system, it ends up copying the data again into the destination file. You can avoid that by setting TMPDIR to $(dirname target-file) or use ksh93's >; operator instead of sponge which does that automatically (and also doesn't override the target file if the redirected command failed).
– Stéphane Chazelas
yesterday














>; ? mind blown.
– glenn jackman
13 hours ago




>; ? mind blown.
– glenn jackman
13 hours ago


















 

draft saved


draft discarded



















































 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f483524%2fhow-does-sponge-from-moreutils-work%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

How did Captain America manage to do this?

迪纳利

南乌拉尔铁路局