aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/sed.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2016-04-11 11:32:36 -0500
committerRob Landley <rob@landley.net>2016-04-11 11:32:36 -0500
commitf9b9f8a1a457f3a359c0d623fc5d0b261f458980 (patch)
tree0ed270aab3ac296de0c3f58b8174c6f53514aa42 /toys/posix/sed.c
parentcb49c305e3c78179b19d6f174ae73309544292b8 (diff)
downloadtoybox-f9b9f8a1a457f3a359c0d623fc5d0b261f458980.tar.gz
sed -f - should read from stdin.
Diffstat (limited to 'toys/posix/sed.c')
-rw-r--r--toys/posix/sed.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/toys/posix/sed.c b/toys/posix/sed.c
index e1c00bab..bafe77c4 100644
--- a/toys/posix/sed.c
+++ b/toys/posix/sed.c
@@ -1045,7 +1045,8 @@ void sed_main(void)
for (dworkin = TT.e; dworkin; dworkin = dworkin->next)
jewel_of_judgement(&dworkin->arg, strlen(dworkin->arg));
for (dworkin = TT.f; dworkin; dworkin = dworkin->next)
- do_lines(xopen(dworkin->arg, O_RDONLY), dworkin->arg, jewel_of_judgement);
+ do_lines(strcmp(dworkin->arg, "-") ? xopen(dworkin->arg, O_RDONLY) : 0,
+ dworkin->arg, jewel_of_judgement);
jewel_of_judgement(0, 0);
dlist_terminate(TT.pattern);
if (TT.nextlen) error_exit("no }");