How does sponge (from moreutils) work?
up vote
1
down vote
favorite
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
add a comment |
up vote
1
down vote
favorite
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
2
What do you mean? The same way every other program knows (e.g.cat f | wc
orcat f | grep foo
or whatever), why would you expectsponge
to be special?
– terdon♦
yesterday
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
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
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
shell io-redirection stdout stdin
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
orcat f | grep foo
or whatever), why would you expectsponge
to be special?
– terdon♦
yesterday
add a comment |
2
What do you mean? The same way every other program knows (e.g.cat f | wc
orcat f | grep foo
or whatever), why would you expectsponge
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
add a comment |
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.
And when therename()
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 settingTMPDIR
to$(dirname target-file)
or useksh93
's>;
operator instead ofsponge
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
add a comment |
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.
And when therename()
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 settingTMPDIR
to$(dirname target-file)
or useksh93
's>;
operator instead ofsponge
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
add a comment |
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.
And when therename()
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 settingTMPDIR
to$(dirname target-file)
or useksh93
's>;
operator instead ofsponge
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
add a comment |
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.
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.
edited yesterday
answered yesterday
thrig
23.6k12955
23.6k12955
And when therename()
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 settingTMPDIR
to$(dirname target-file)
or useksh93
's>;
operator instead ofsponge
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
add a comment |
And when therename()
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 settingTMPDIR
to$(dirname target-file)
or useksh93
's>;
operator instead ofsponge
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
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
2
What do you mean? The same way every other program knows (e.g.
cat f | wc
orcat f | grep foo
or whatever), why would you expectsponge
to be special?– terdon♦
yesterday