Make /dev/c1* device nodes on disk and on the boot ramdisk.
[minix3.git] / commands / ash / bltin / nlecho.c
blobccfb79288e690d640a4d03f2c2935722291899e4
1 /*
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.
9 */
12 #define main nlechocmd
14 #include "bltin.h"
17 main(argc, argv) char **argv; {
18 register char **ap;
20 for (ap = argv + 1 ; *ap ; ap++) {
21 fputs(*ap, stdout);
22 putchar('\n');
24 return 0;