summaryrefslogtreecommitdiff
path: root/src/stat.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2009-09-15 23:07:18 +0200
committerJim Meyering <meyering@redhat.com>2009-09-29 16:04:12 +0200
commita033e28737c1f6320bfc56b484253b61051bad85 (patch)
tree8f663e656092685e09aa5f655ca97b43345ced46 /src/stat.c
parentb7aaa0da8b47f4f373d3e0876bd540986278c6e2 (diff)
downloadcoreutils-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/stat.c')
-rw-r--r--src/stat.c17
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;