diff options
author | Jim Meyering <meyering@redhat.com> | 2009-09-15 23:07:18 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-09-29 16:04:12 +0200 |
commit | a033e28737c1f6320bfc56b484253b61051bad85 (patch) | |
tree | 8f663e656092685e09aa5f655ca97b43345ced46 /src | |
parent | b7aaa0da8b47f4f373d3e0876bd540986278c6e2 (diff) | |
download | coreutils-a033e28737c1f6320bfc56b484253b61051bad85.tar.xz |
stat: interpret "-" as standard input
* src/stat.c (do_stat): Interpret a command line argument of "-"
to mean "standard input", like many other tools do.
(do_statfs): Fail upon any attempt to use "-".
* NEWS (Changes in behavior): Mention it.
* tests/misc/stat-hyphen: New test, to exercise the above.
* tests/Makefile.am (TESTS): Add misc/stat-hyphen.
Diffstat (limited to 'src')
-rw-r--r-- | src/stat.c | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/src/stat.c b/src/stat.c index 7d42598f1..14654b174 100644 --- a/src/stat.c +++ b/src/stat.c @@ -829,6 +829,13 @@ do_statfs (char const *filename, bool terse, char const *format) { STRUCT_STATVFS statfsbuf; + if (STREQ (filename, "-")) + { + error (0, 0, _("using %s to denote standard input does not work" + " in file system mode"), quote (filename)); + return false; + } + if (STATFS (filename, &statfsbuf) != 0) { error (0, errno, _("cannot read file system information for %s"), @@ -857,7 +864,15 @@ do_stat (char const *filename, bool terse, char const *format) { struct stat statbuf; - if ((follow_links ? stat : lstat) (filename, &statbuf) != 0) + if (STREQ (filename, "-")) + { + if (fstat (STDIN_FILENO, &statbuf) != 0) + { + error (0, errno, _("cannot stat standard input")); + return false; + } + } + else if ((follow_links ? stat : lstat) (filename, &statbuf) != 0) { error (0, errno, _("cannot stat %s"), quote (filename)); return false; |