2 * Echo the command argument to the standard output, one line at a time.
3 * This command is useful for debugging th shell and whenever you what
4 * to output strings literally.
6 * Copyright (C) 1989 by Kenneth Almquist. All rights reserved.
7 * This file is part of ash, which is distributed under the terms specified
8 * by the Ash General Public License. See the file named LICENSE.
12 #define main nlechocmd
17 main(argc
, argv
) char **argv
; {
20 for (ap
= argv
+ 1 ; *ap
; ap
++) {