diff options
author | Jim Meyering <jim@meyering.net> | 2005-04-04 21:57:45 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-04-04 21:57:45 +0000 |
commit | 39057513833d21f2178c374c988cee6df8c891d8 (patch) | |
tree | 3b17f7746239969cf8566e62538bd337156b8bf3 /src | |
parent | 63a63316a1c98934aab4e894f4bd52df5a9518fe (diff) | |
download | coreutils-39057513833d21f2178c374c988cee6df8c891d8.tar.xz |
(usage): Mention that some shells provide a built-in
function by the same name.
Diffstat (limited to 'src')
-rw-r--r-- | src/echo.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/echo.c b/src/echo.c index bf82de993..703704e93 100644 --- a/src/echo.c +++ b/src/echo.c @@ -1,5 +1,5 @@ /* echo.c, derived from code echo.c in Bash. - Copyright (C) 87,89, 1991-1997, 1999-2004 Free Software Foundation, Inc. + Copyright (C) 87,89, 1991-1997, 1999-2005 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -62,6 +62,7 @@ usage (int status) else { printf (_("Usage: %s [OPTION]... [STRING]...\n"), program_name); + printf (USAGE_BUILTIN_WARNING, PROGRAM_NAME); fputs (_("\ Echo the STRING(s) to standard output.\n\ \n\ |