Home | History | Annotate | Download | only in sh

Lines Matching defs:redir

58 #include "redir.h"	/* defines max_user_fd */
344 union node *redir, **rpp;
353 redir = NULL;
355 rpp = &redir;
567 if (!redir)
579 n1 = simplecmd(rpp, redir);
594 if (redir) {
601 n1->nredir.redirect = redir;
621 simplecmd(union node **rpp, union node *redir)
632 CTRACE(DBG_PARSE, ("simple command with%s redir already @%d\n",
633 redir ? "" : "out", plinno));
636 /* rpp to be the address of the local redir variable. */
637 if (redir == 0)
638 rpp = &redir;
669 && redir == 0) {
701 if (args == NULL && redir == NULL)
710 n->ncmd.redirect = redir;
746 VTRACE(DBG_PARSE, ("Fix redir %s %d\n", text, err));