Home | History | Annotate | Line # | Download | only in common
commands.c revision 1.2.74.1
      1  1.2.74.1    yamt /*	$NetBSD: commands.c,v 1.2.74.1 2009/08/19 18:46:24 yamt Exp $	*/
      2       1.1  cherry 
      3       1.1  cherry /*-
      4       1.1  cherry  * Copyright (c) 1998 Michael Smith <msmith (at) freebsd.org>
      5       1.1  cherry  * All rights reserved.
      6       1.1  cherry  *
      7       1.1  cherry  * Redistribution and use in source and binary forms, with or without
      8       1.1  cherry  * modification, are permitted provided that the following conditions
      9       1.1  cherry  * are met:
     10       1.1  cherry  * 1. Redistributions of source code must retain the above copyright
     11       1.1  cherry  *    notice, this list of conditions and the following disclaimer.
     12       1.1  cherry  * 2. Redistributions in binary form must reproduce the above copyright
     13       1.1  cherry  *    notice, this list of conditions and the following disclaimer in the
     14       1.1  cherry  *    documentation and/or other materials provided with the distribution.
     15       1.1  cherry  *
     16       1.1  cherry  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
     17       1.1  cherry  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     18       1.1  cherry  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     19       1.1  cherry  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
     20       1.1  cherry  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     21       1.1  cherry  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     22       1.1  cherry  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     23       1.1  cherry  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     24       1.1  cherry  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25       1.1  cherry  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26       1.1  cherry  * SUCH DAMAGE.
     27       1.1  cherry  */
     28       1.1  cherry 
     29       1.1  cherry #include <sys/cdefs.h>
     30       1.2  cherry /* __FBSDID("$FreeBSD: src/sys/boot/common/commands.c,v 1.19 2003/08/25 23:30:41 obrien Exp $"); */
     31       1.1  cherry 
     32       1.1  cherry #include <lib/libsa/stand.h>
     33  1.2.74.1    yamt #include <lib/libsa/loadfile.h>
     34       1.1  cherry #include <lib/libkern/libkern.h>
     35       1.1  cherry 
     36       1.1  cherry #include "bootstrap.h"
     37       1.1  cherry 
     38       1.1  cherry char		*command_errmsg;
     39       1.1  cherry char		command_errbuf[256];	/* XXX should have procedural interface for setting, size limit? */
     40       1.1  cherry 
     41       1.1  cherry static int page_file(char *filename);
     42       1.1  cherry 
     43       1.1  cherry /*
     44       1.1  cherry  * Help is read from a formatted text file.
     45       1.1  cherry  *
     46       1.1  cherry  * Entries in the file are formatted as
     47       1.1  cherry 
     48       1.1  cherry # Ttopic [Ssubtopic] Ddescription
     49       1.1  cherry help
     50       1.1  cherry text
     51       1.1  cherry here
     52       1.1  cherry #
     53       1.1  cherry 
     54       1.1  cherry  *
     55       1.1  cherry  * Note that for code simplicity's sake, the above format must be followed
     56       1.1  cherry  * exactly.
     57       1.1  cherry  *
     58       1.1  cherry  * Subtopic entries must immediately follow the topic (this is used to
     59       1.1  cherry  * produce the listing of subtopics).
     60       1.1  cherry  *
     61       1.1  cherry  * If no argument(s) are supplied by the user, the help for 'help' is displayed.
     62       1.1  cherry  */
     63       1.1  cherry 
     64       1.1  cherry static int
     65       1.1  cherry help_getnext(int fd, char **topic, char **subtopic, char **desc)
     66       1.1  cherry {
     67       1.1  cherry     char	line[81], *cp, *ep;
     68       1.1  cherry 
     69       1.1  cherry     for (;;) {
     70       1.1  cherry 	if (fgetstr(line, 80, fd) < 0)
     71       1.1  cherry 	    return(0);
     72       1.1  cherry 
     73       1.1  cherry 	if ((strlen(line) < 3) || (line[0] != '#') || (line[1] != ' '))
     74       1.1  cherry 	    continue;
     75       1.1  cherry 
     76       1.1  cherry 	*topic = *subtopic = *desc = NULL;
     77       1.1  cherry 	cp = line + 2;
     78       1.1  cherry 	while((cp != NULL) && (*cp != 0)) {
     79       1.1  cherry 	    ep = strchr(cp, ' ');
     80       1.1  cherry 	    if ((*cp == 'T') && (*topic == NULL)) {
     81       1.1  cherry 		if (ep != NULL)
     82       1.1  cherry 		    *ep++ = 0;
     83       1.1  cherry 		*topic = strdup(cp + 1);
     84       1.1  cherry 	    } else if ((*cp == 'S') && (*subtopic == NULL)) {
     85       1.1  cherry 		if (ep != NULL)
     86       1.1  cherry 		    *ep++ = 0;
     87       1.1  cherry 		*subtopic = strdup(cp + 1);
     88       1.1  cherry 	    } else if (*cp == 'D') {
     89       1.1  cherry 		*desc = strdup(cp + 1);
     90       1.1  cherry 		ep = NULL;
     91       1.1  cherry 	    }
     92       1.1  cherry 	    cp = ep;
     93       1.1  cherry 	}
     94       1.1  cherry 	if (*topic == NULL) {
     95       1.1  cherry 	    if (*subtopic != NULL)
     96       1.1  cherry 		free(*subtopic);
     97       1.1  cherry 	    if (*desc != NULL)
     98       1.1  cherry 		free(*desc);
     99       1.1  cherry 	    continue;
    100       1.1  cherry 	}
    101       1.1  cherry 	return(1);
    102       1.1  cherry     }
    103       1.1  cherry }
    104       1.1  cherry 
    105       1.1  cherry static int
    106       1.1  cherry help_emitsummary(char *topic, char *subtopic, char *desc)
    107       1.1  cherry {
    108       1.1  cherry     int		i;
    109       1.1  cherry 
    110       1.1  cherry     pager_output("    ");
    111       1.1  cherry     pager_output(topic);
    112       1.1  cherry     i = strlen(topic);
    113       1.1  cherry     if (subtopic != NULL) {
    114       1.1  cherry 	pager_output(" ");
    115       1.1  cherry 	pager_output(subtopic);
    116       1.1  cherry 	i += strlen(subtopic) + 1;
    117       1.1  cherry     }
    118       1.1  cherry     if (desc != NULL) {
    119       1.1  cherry 	do {
    120       1.1  cherry 	    pager_output(" ");
    121       1.1  cherry 	} while (i++ < 30);
    122       1.1  cherry 	pager_output(desc);
    123       1.1  cherry     }
    124       1.1  cherry     return (pager_output("\n"));
    125       1.1  cherry }
    126       1.1  cherry 
    127       1.1  cherry 
    128       1.1  cherry int
    129       1.1  cherry command_help(int argc, char *argv[])
    130       1.1  cherry {
    131       1.1  cherry     char	buf[81];	/* XXX buffer size? */
    132       1.1  cherry     int		hfd, matched, doindex;
    133       1.1  cherry     char	*topic, *subtopic, *t, *s, *d;
    134       1.1  cherry 
    135       1.1  cherry     /* page the help text from our load path */
    136       1.1  cherry     sprintf(buf, "%s/boot/loader.help", getenv("loaddev"));
    137       1.1  cherry     if ((hfd = open(buf, O_RDONLY)) < 0) {
    138       1.1  cherry 	printf("Verbose help not available, use '?' to list commands\n");
    139       1.1  cherry 	return(CMD_OK);
    140       1.1  cherry     }
    141       1.1  cherry 
    142       1.1  cherry     /* pick up request from arguments */
    143       1.1  cherry     topic = subtopic = NULL;
    144       1.1  cherry     switch(argc) {
    145       1.1  cherry     case 3:
    146       1.1  cherry 	subtopic = strdup(argv[2]);
    147       1.1  cherry     case 2:
    148       1.1  cherry 	topic = strdup(argv[1]);
    149       1.1  cherry 	break;
    150       1.1  cherry     case 1:
    151       1.1  cherry 	topic = strdup("help");
    152       1.1  cherry 	break;
    153       1.1  cherry     default:
    154       1.1  cherry 	command_errmsg = "usage is 'help <topic> [<subtopic>]";
    155       1.1  cherry 	return(CMD_ERROR);
    156       1.1  cherry     }
    157       1.1  cherry 
    158       1.1  cherry     /* magic "index" keyword */
    159       1.1  cherry     doindex = !strcmp(topic, "index");
    160       1.1  cherry     matched = doindex;
    161       1.1  cherry 
    162       1.1  cherry     /* Scan the helpfile looking for help matching the request */
    163       1.1  cherry     pager_open();
    164       1.1  cherry     while(help_getnext(hfd, &t, &s, &d)) {
    165       1.1  cherry 
    166       1.1  cherry 	if (doindex) {		/* dink around formatting */
    167       1.1  cherry 	    if (help_emitsummary(t, s, d))
    168       1.1  cherry 		break;
    169       1.1  cherry 
    170       1.1  cherry 	} else if (strcmp(topic, t)) {
    171       1.1  cherry 	    /* topic mismatch */
    172       1.1  cherry 	    if(matched)		/* nothing more on this topic, stop scanning */
    173       1.1  cherry 		break;
    174       1.1  cherry 
    175       1.1  cherry 	} else {
    176       1.1  cherry 	    /* topic matched */
    177       1.1  cherry 	    matched = 1;
    178       1.1  cherry 	    if (((subtopic == NULL) && (s == NULL)) ||
    179       1.1  cherry 		((subtopic != NULL) && (s != NULL) && !strcmp(subtopic, s))) {
    180       1.1  cherry 		/* exact match, print text */
    181       1.1  cherry 		while((fgetstr(buf, 80, hfd) >= 0) && (buf[0] != '#')) {
    182       1.1  cherry 		    if (pager_output(buf))
    183       1.1  cherry 			break;
    184       1.1  cherry 		    if (pager_output("\n"))
    185       1.1  cherry 			break;
    186       1.1  cherry 		}
    187       1.1  cherry 	    } else if ((subtopic == NULL) && (s != NULL)) {
    188       1.1  cherry 		/* topic match, list subtopics */
    189       1.1  cherry 		if (help_emitsummary(t, s, d))
    190       1.1  cherry 		    break;
    191       1.1  cherry 	    }
    192       1.1  cherry 	}
    193       1.1  cherry 	free(t);
    194       1.1  cherry 	free(s);
    195       1.1  cherry 	free(d);
    196       1.1  cherry     }
    197       1.1  cherry     pager_close();
    198       1.1  cherry     close(hfd);
    199       1.1  cherry     if (!matched) {
    200       1.1  cherry 	sprintf(command_errbuf, "no help available for '%s'", topic);
    201       1.1  cherry 	free(topic);
    202       1.1  cherry 	if (subtopic)
    203       1.1  cherry 	    free(subtopic);
    204       1.1  cherry 	return(CMD_ERROR);
    205       1.1  cherry     }
    206       1.1  cherry     free(topic);
    207       1.1  cherry     if (subtopic)
    208       1.1  cherry 	free(subtopic);
    209       1.1  cherry     return(CMD_OK);
    210       1.1  cherry }
    211       1.1  cherry 
    212       1.1  cherry 
    213       1.1  cherry int
    214       1.1  cherry command_commandlist(int argc, char *argv[])
    215       1.1  cherry {
    216       1.1  cherry     struct bootblk_command	*cmdp;
    217       1.1  cherry     int		res;
    218       1.1  cherry     char	name[20];
    219       1.1  cherry     int i;
    220       1.1  cherry 
    221       1.1  cherry     res = 0;
    222       1.1  cherry     pager_open();
    223       1.1  cherry     res = pager_output("Available commands:\n");
    224       1.1  cherry 
    225       1.1  cherry     for (i = 0, cmdp = commands; (cmdp->c_name != NULL) && (cmdp->c_desc != NULL ); i++, cmdp = commands + i) {
    226       1.1  cherry 	    if (res)
    227       1.1  cherry 	    break;
    228       1.1  cherry 	if ((cmdp->c_name != NULL) && (cmdp->c_desc != NULL)) {
    229       1.1  cherry 	    sprintf(name, "  %s  ", cmdp->c_name);
    230       1.1  cherry 	    pager_output(name);
    231       1.1  cherry 	    pager_output(cmdp->c_desc);
    232       1.1  cherry 	    res = pager_output("\n");
    233       1.1  cherry 	}
    234       1.1  cherry     }
    235       1.1  cherry     pager_close();
    236       1.1  cherry     return(CMD_OK);
    237       1.1  cherry }
    238       1.1  cherry 
    239       1.1  cherry /*
    240       1.1  cherry  * XXX set/show should become set/echo if we have variable
    241       1.1  cherry  * substitution happening.
    242       1.1  cherry  */
    243       1.1  cherry 
    244       1.1  cherry int
    245       1.1  cherry command_show(int argc, char *argv[])
    246       1.1  cherry {
    247       1.1  cherry     struct env_var	*ev;
    248       1.1  cherry     char		*cp;
    249       1.1  cherry 
    250       1.1  cherry     if (argc < 2) {
    251       1.1  cherry 	/*
    252       1.1  cherry 	 * With no arguments, print everything.
    253       1.1  cherry 	 */
    254       1.1  cherry 	pager_open();
    255       1.1  cherry 	for (ev = environ; ev != NULL; ev = ev->ev_next) {
    256       1.1  cherry 	    pager_output(ev->ev_name);
    257       1.1  cherry 	    cp = getenv(ev->ev_name);
    258       1.1  cherry 	    if (cp != NULL) {
    259       1.1  cherry 		pager_output("=");
    260       1.1  cherry 		pager_output(cp);
    261       1.1  cherry 	    }
    262       1.1  cherry 	    if (pager_output("\n"))
    263       1.1  cherry 		break;
    264       1.1  cherry 	}
    265       1.1  cherry 	pager_close();
    266       1.1  cherry     } else {
    267       1.1  cherry 	if ((cp = getenv(argv[1])) != NULL) {
    268       1.1  cherry 	    printf("%s\n", cp);
    269       1.1  cherry 	} else {
    270       1.1  cherry 	    sprintf(command_errbuf, "variable '%s' not found", argv[1]);
    271       1.1  cherry 	    return(CMD_ERROR);
    272       1.1  cherry 	}
    273       1.1  cherry     }
    274       1.1  cherry     return(CMD_OK);
    275       1.1  cherry }
    276       1.1  cherry 
    277       1.1  cherry 
    278       1.1  cherry int
    279       1.1  cherry command_set(int argc, char *argv[])
    280       1.1  cherry {
    281       1.1  cherry     int		err;
    282       1.1  cherry 
    283       1.1  cherry     if (argc != 2) {
    284       1.1  cherry 	command_errmsg = "wrong number of arguments";
    285       1.1  cherry 	return(CMD_ERROR);
    286       1.1  cherry     } else {
    287       1.1  cherry 	if ((err = putenv(argv[1])) != 0) {
    288       1.1  cherry 	    command_errmsg = strerror(err);
    289       1.1  cherry 	    return(CMD_ERROR);
    290       1.1  cherry 	}
    291       1.1  cherry     }
    292       1.1  cherry     return(CMD_OK);
    293       1.1  cherry }
    294       1.1  cherry 
    295       1.1  cherry 
    296       1.1  cherry int
    297       1.1  cherry command_unset(int argc, char *argv[])
    298       1.1  cherry {
    299       1.1  cherry     int		err;
    300       1.1  cherry 
    301       1.1  cherry     if (argc != 2) {
    302       1.1  cherry 	command_errmsg = "wrong number of arguments";
    303       1.1  cherry 	return(CMD_ERROR);
    304       1.1  cherry     } else {
    305       1.1  cherry 	if ((err = unsetenv(argv[1])) != 0) {
    306       1.1  cherry 	    command_errmsg = strerror(err);
    307       1.1  cherry 	    return(CMD_ERROR);
    308       1.1  cherry 	}
    309       1.1  cherry     }
    310       1.1  cherry     return(CMD_OK);
    311       1.1  cherry }
    312       1.1  cherry 
    313       1.1  cherry 
    314       1.1  cherry int
    315       1.1  cherry command_echo(int argc, char *argv[])
    316       1.1  cherry {
    317       1.1  cherry     char	*s;
    318       1.1  cherry     int		nl, ch;
    319       1.1  cherry 
    320       1.1  cherry     nl = 0;
    321       1.1  cherry     optind = 1;
    322       1.1  cherry     optreset = 1;
    323       1.1  cherry     while ((ch = getopt(argc, argv, "n")) != -1) {
    324       1.1  cherry 	switch(ch) {
    325       1.1  cherry 	case 'n':
    326       1.1  cherry 	    nl = 1;
    327       1.1  cherry 	    break;
    328       1.1  cherry 	case '?':
    329       1.1  cherry 	default:
    330       1.1  cherry 	    /* getopt has already reported an error */
    331       1.1  cherry 	    return(CMD_OK);
    332       1.1  cherry 	}
    333       1.1  cherry     }
    334       1.1  cherry     argv += (optind);
    335       1.1  cherry     argc -= (optind);
    336       1.1  cherry 
    337       1.1  cherry     s = unargv(argc, argv);
    338       1.1  cherry     if (s != NULL) {
    339       1.1  cherry 	printf("%s", s);
    340       1.1  cherry 	free(s);
    341       1.1  cherry     }
    342       1.1  cherry     if (!nl)
    343       1.1  cherry 	printf("\n");
    344       1.1  cherry     return(CMD_OK);
    345       1.1  cherry }
    346       1.1  cherry 
    347       1.1  cherry /*
    348       1.1  cherry  * A passable emulation of the sh(1) command of the same name.
    349       1.1  cherry  */
    350       1.1  cherry 
    351       1.1  cherry 
    352       1.1  cherry int
    353       1.1  cherry command_read(int argc, char *argv[])
    354       1.1  cherry {
    355       1.1  cherry     char	*prompt;
    356       1.1  cherry     int		timeout;
    357       1.1  cherry     time_t	when;
    358       1.1  cherry     char	*cp;
    359       1.1  cherry     char	*name;
    360       1.1  cherry     char	buf[256];		/* XXX size? */
    361       1.1  cherry     int		c;
    362       1.1  cherry 
    363       1.1  cherry     timeout = -1;
    364       1.1  cherry     prompt = NULL;
    365       1.1  cherry     optind = 1;
    366       1.1  cherry     optreset = 1;
    367       1.1  cherry     while ((c = getopt(argc, argv, "p:t:")) != -1) {
    368       1.1  cherry 	switch(c) {
    369       1.1  cherry 
    370       1.1  cherry 	case 'p':
    371       1.1  cherry 	    prompt = optarg;
    372       1.1  cherry 	    break;
    373       1.1  cherry 	case 't':
    374       1.1  cherry 	    timeout = strtol(optarg, &cp, 0);
    375       1.1  cherry 	    if (cp == optarg) {
    376       1.1  cherry 		sprintf(command_errbuf, "bad timeout '%s'", optarg);
    377       1.1  cherry 		return(CMD_ERROR);
    378       1.1  cherry 	    }
    379       1.1  cherry 	    break;
    380       1.1  cherry 	default:
    381       1.1  cherry 	    return(CMD_OK);
    382       1.1  cherry 	}
    383       1.1  cherry     }
    384       1.1  cherry 
    385       1.1  cherry     argv += (optind);
    386       1.1  cherry     argc -= (optind);
    387       1.1  cherry     name = (argc > 0) ? argv[0]: NULL;
    388       1.1  cherry 
    389       1.1  cherry     if (prompt != NULL)
    390       1.1  cherry 	printf("%s", prompt);
    391       1.1  cherry     if (timeout >= 0) {
    392       1.1  cherry 	when = time(NULL) + timeout;
    393       1.1  cherry 	while (!ischar())
    394       1.1  cherry 	    if (time(NULL) >= when)
    395       1.1  cherry 		return(CMD_OK);		/* is timeout an error? */
    396       1.1  cherry     }
    397       1.1  cherry 
    398       1.1  cherry     ngets(buf, sizeof(buf));
    399       1.1  cherry 
    400       1.1  cherry     if (name != NULL)
    401       1.1  cherry 	setenv(name, buf, 1);
    402       1.1  cherry     return(CMD_OK);
    403       1.1  cherry }
    404       1.1  cherry 
    405       1.1  cherry /*
    406       1.1  cherry  * File pager
    407       1.1  cherry  */
    408       1.1  cherry 
    409       1.1  cherry int
    410       1.1  cherry command_more(int argc, char *argv[])
    411       1.1  cherry {
    412       1.1  cherry     int         i;
    413       1.1  cherry     int         res;
    414       1.1  cherry     char	line[80];
    415       1.1  cherry 
    416       1.1  cherry     res=0;
    417       1.1  cherry     pager_open();
    418       1.1  cherry     for (i = 1; (i < argc) && (res == 0); i++) {
    419       1.1  cherry 	sprintf(line, "*** FILE %s BEGIN ***\n", argv[i]);
    420       1.1  cherry 	if (pager_output(line))
    421       1.1  cherry 		break;
    422       1.1  cherry         res = page_file(argv[i]);
    423       1.1  cherry 	if (!res) {
    424       1.1  cherry 	    sprintf(line, "*** FILE %s END ***\n", argv[i]);
    425       1.1  cherry 	    res = pager_output(line);
    426       1.1  cherry 	}
    427       1.1  cherry     }
    428       1.1  cherry     pager_close();
    429       1.1  cherry 
    430       1.1  cherry     if (res == 0)
    431       1.1  cherry 	return CMD_OK;
    432       1.1  cherry     else
    433       1.1  cherry 	return CMD_ERROR;
    434       1.1  cherry }
    435       1.1  cherry 
    436       1.1  cherry static int
    437       1.1  cherry page_file(char *filename)
    438       1.1  cherry {
    439       1.1  cherry     int result;
    440       1.1  cherry 
    441       1.1  cherry     result = pager_file(filename);
    442       1.1  cherry 
    443       1.1  cherry     if (result == -1)
    444       1.1  cherry 	sprintf(command_errbuf, "error showing %s", filename);
    445       1.1  cherry 
    446       1.1  cherry     return result;
    447       1.1  cherry }
    448       1.1  cherry 
    449       1.1  cherry /*
    450       1.1  cherry  * List all disk-like devices
    451       1.1  cherry  */
    452       1.1  cherry 
    453       1.1  cherry int
    454       1.1  cherry command_lsdev(int argc, char *argv[])
    455       1.1  cherry {
    456       1.1  cherry     int		verbose, ch, i;
    457       1.1  cherry     char	line[80];
    458       1.1  cherry 
    459       1.1  cherry     verbose = 0;
    460       1.1  cherry     optind = 1;
    461       1.1  cherry     optreset = 1;
    462       1.1  cherry     while ((ch = getopt(argc, argv, "v")) != -1) {
    463       1.1  cherry 	switch(ch) {
    464       1.1  cherry 	case 'v':
    465       1.1  cherry 	    verbose = 1;
    466       1.1  cherry 	    break;
    467       1.1  cherry 	case '?':
    468       1.1  cherry 	default:
    469       1.1  cherry 	    /* getopt has already reported an error */
    470       1.1  cherry 	    return(CMD_OK);
    471       1.1  cherry 	}
    472       1.1  cherry     }
    473       1.1  cherry     argv += (optind);
    474       1.1  cherry     argc -= (optind);
    475       1.1  cherry 
    476       1.1  cherry     pager_open();
    477       1.1  cherry 
    478       1.1  cherry     sprintf(line, "Device Enumeration:\n");
    479       1.1  cherry     pager_output(line);
    480       1.1  cherry 
    481       1.1  cherry     for (i = 0; i < ndevs; i++) {
    482       1.1  cherry 	 sprintf(line, "%s\n", devsw[i].dv_name);
    483       1.1  cherry 	    if (pager_output(line))
    484       1.1  cherry 		    break;
    485       1.1  cherry     }
    486       1.1  cherry 
    487       1.1  cherry     pager_close();
    488       1.1  cherry     return(CMD_OK);
    489       1.1  cherry }
    490       1.1  cherry 
    491