Home | History | Annotate | Download | only in sh

Lines Matching defs:redir

72 #include "redir.h"
454 union node *redir;
456 for (redir = n ; redir ; redir = redir->nfile.next) {
459 switch (redir->type) {
465 expandarg(redir->nfile.fname, &fn, EXP_TILDE | EXP_REDIR);
466 redir->nfile.expfname = fn.list->text;
470 if (redir->ndup.vname) {
471 expandarg(redir->ndup.vname, &fn, EXP_FULL | EXP_TILDE);
472 fixredir(redir, fn.list->text, 1);