2 * The line command. Reads one line from the standard input and writes it
3 * to the standard output.
5 * Copyright (C) 1989 by Kenneth Almquist. All rights reserved.
6 * This file is part of ash, which is distributed under the terms specified
7 * by the Ash General Public License. See the file named LICENSE.
15 main(argc
, argv
) char **argv
; {
19 if (read(0, &c
, 1) != 1) {