HomeSort by: relevance | last modified time | path
    Searched refs:pager (Results 1 - 18 of 18) sorted by relevancy

  /src/external/bsd/openldap/dist/contrib/slapd-modules/alias/tests/data/
alias.conf 3 alias_attribute pager mobile
  /src/usr.bin/gzip/
zmore 45 pager=${PAGER-less}
47 pager=${PAGER-more}
52 gzip -cdfq 2>&1 | $pager $flags
58 gzip -cdfq "$1" 2>&1 | $pager $flags
  /src/external/bsd/ntp/dist/sntp/libopts/
pgusage.c 13 * This routine will run run-on options through a pager so the
80 char const * pager = (char const *)getenv(PAGER_NAME); local
85 * Use the "more(1)" program if "PAGER" has not been defined
87 if (pager == NULL)
88 pager = MORE_STR;
90 bfsz = 2 * strlen(fname) + strlen(pager) + PAGE_USAGE_FMT_LEN;
92 snprintf(res, bfsz, PAGE_USAGE_FMT, pager, fname);
102 * what: emit help text and pass through a pager program.
107 * Run the usage output through a pager.
126 * THEN invoke the pager to page through the usage file we created
    [all...]
  /src/usr.sbin/makemandb/
apropos.c 49 int pager; member in struct:apropos_flags
126 case 'p': // user wants a pager
127 aflags->pager = 1;
223 if (aflags.pager) {
224 const char *pager = getenv("PAGER"); local
225 if (pager == NULL)
226 pager = _PATH_PAGER;
231 /* Open a pipe to the pager */
232 if ((cbdata.out = popen(pager, "w")) == NULL)
    [all...]
  /src/games/quiz/
quiz.c 163 const char *pager; local
166 pager = "cat";
168 if (!(pager = getenv("PAGER")) || (*pager == 0))
169 pager = _PATH_PAGER;
171 if ((pf = popen(pager, "w")) == NULL)
172 err(1, "%s", pager);
  /src/games/fish/
fish.c 438 const char *pager; local
455 pager = "cat";
457 if (!(pager = getenv("PAGER")) || (*pager == 0))
458 pager = _PATH_MORE;
464 (void)execl("/bin/sh", "sh", "-c", pager, (char *) NULL);
465 err(1, "exec sh -c %s", pager);
  /src/external/bsd/openldap/dist/contrib/slapd-modules/alias/tests/scripts/
test003-search 59 $LDAPSEARCH -b "$BASEDN" -H $URI1 "uid=bjensen" pager \
71 $LDAPSEARCH -b "$BASEDN" -H $URI1 "uid=bjensen" mobile pager \
  /src/games/wump/
wump.c 746 const char *pager; local
766 pager = "cat";
768 if (!(pager = getenv("PAGER")) || (*pager == 0))
769 pager = _PATH_PAGER;
777 (void)execl("/bin/sh", "sh", "-c", pager, (char *) NULL);
778 err(1, "exec sh -c %s", pager);
  /src/games/hack/
Makefile 14 hack.o_init.c hack.objnam.c hack.options.c hack.pager.c hack.potion.c \
59 COPTS.hack.pager.c+= ${CC_WNO_STRINGOP_TRUNCATION}
  /src/usr.bin/man/
man.c 84 int cat; /* -c: do not use a pager */
108 const char *pager; /* pager to use */ member in struct:manstate
212 * we will need (machine type, pager, section [if specified
225 if (!m.cat && !m.how && !m.where) { /* if we need a pager ... */
229 if ((m.pager = getenv("PAGER")) != NULL &&
230 m.pager[0] != '\0')
231 m.pager = check_pager(m.pager);
    [all...]
  /src/usr.bin/ftp/
cmds.c 1284 * pdir, pls LIST |$PAGER
1285 * pmlsd MLSD |$PAGER
1299 * the `pager' versions.
1342 p = getoptionvalue("pager");
2574 * Display one local file through $PAGER.
2581 char *pager, *locfile; local
2593 p = getoptionvalue("pager");
2597 pager = ftp_malloc(len);
2598 (void)strlcpy(pager, p, len);
2599 (void)strlcat(pager, " ", len)
2617 char *pager; local
    [all...]
  /src/external/bsd/mdocml/dist/
main.c 1220 * then fork the pager and wait for the user to close it.
1250 /* Once in the foreground, activate the pager. */
1258 /* Wait for the pager to stop or exit. */
1282 const char *pager; local
1293 pager = getenv("MANPAGER");
1294 if (pager == NULL || *pager == '\0')
1295 pager = getenv("PAGER");
1296 if (pager == NULL || *pager == '\0'
    [all...]
  /src/usr.sbin/etcupdate/
etcupdate 52 PAGER="${PAGER:=/usr/bin/more}"
87 Usage: ${PROG} [-alv] [-d DESTDIR] [-p PAGER] [-s SRC_ARG] [-t TEMPROOT] [-w WIDTH]
97 -p PAGER Which pager to use [/usr/bin/more]
331 diff -u "${DESTDIR}${1}" "${TEMPROOT}${1}" | ${PAGER}
425 | ${PAGER}
435 ${PAGER} "${TEMPROOT}${1}"
497 PAGER="${OPTARG}"
  /src/usr.bin/mail/
lex.c 466 * If none, then setup the pager unless "pager-off" is defined.
512 const char *pager; local
513 pager = value(ENAME_PAGER);
514 if (pager == NULL || *pager == '\0')
515 pager = _PATH_MORE;
517 if ((fout = Popen(pager, "we")) == NULL) {
518 warn("Popen: %s", pager);
  /src/external/gpl3/gdb.old/dist/gdb/
utils.c 82 #include "pager.h"
1416 /* See pager.h. */
1669 /* If the user does "set height 1" then the pager will exhibit weird
1731 column, then we'll only reset the style if the pager
1812 /* We have to make a string here because the pager uses
1820 /* Test that disabling the pager does not also disable word
1827 pager_file pager (strfile);
1829 /* Make sure the pager is disabled. */
1844 pager.puts ("aaaaaaaaaaaa");
1845 pager.wrap_here (2)
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
utils.c 81 #include "pager.h"
1674 /* If the user does "set height 1" then the pager will exhibit weird
1750 column, then we'll only reset the style if the pager
1832 /* We have to make a string here because the pager uses
1840 /* Test that disabling the pager does not also disable word
1847 pager_file pager (strfile);
1849 /* Make sure the pager is disabled. */
1864 pager.puts ("aaaaaaaaaaaa");
1865 pager.wrap_here (2);
1866 pager.puts ("bbbbbbbbbbbb\n")
    [all...]
  /src/external/gpl2/groff/dist/contrib/groffer/
groffer2.sh 433 'pager' 'preprocessor' 'prompt' 'sections' 'systems' 'troff-device'";
501 export _MANOPT_PAGER; # $MANOPT --pager
2845 # $MANPATH, $MANROFFSEQ, $MANSEC, $PAGER, $SYSTEM, $MANOPT.
2856 # $MANPATH, $MANROFFSEQ, $MANSEC, $PAGER, $SYSTEM; overridden by
3837 --pager=program preset the paging program for tty mode.
3843 --text output in a text device without a pager.
3844 --tty display with a pager on text terminal even when in X.
3845 --tty-viewer=prog select a pager for tty mode; same as --pager.
4321 -P|--pager)
    [all...]
  /src/external/bsd/libbind/dist/tests/
dig8.c 260 char *pager = NULL; variable

Completed in 83 milliseconds