Changeset 3437 in kBuild for trunk/src/kash/nodetypes
- Timestamp:
- Sep 3, 2020 1:52:14 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kash/nodetypes
r1215 r3437 118 118 NAPPEND nfile # fd>> fname 119 119 type int 120 next nodeptr # next redirection in list121 fd int # file descriptor being redirected120 fd int # file descriptor being redirected (must match ndup) 121 next nodeptr # next redirection in list (must match ndup) 122 122 fname nodeptr # file name, in a NARG node 123 123 expfname temp char *expfname # actual file name … … 126 126 NFROMFD ndup # fd>&dupfd 127 127 type int 128 next nodeptr # next redirection in list129 fd int # file descriptor being redirected128 fd int # file descriptor being redirected (must match nfile) 129 next nodeptr # next redirection in list (must match nfile) 130 130 dupfd int # file descriptor to duplicate 131 131 vname nodeptr # file name if fd>&$var … … 135 135 NXHERE nhere # fd<<! 136 136 type int 137 next nodeptr # next redirection in list138 fd int # file descriptor being redirected137 fd int # file descriptor being redirected (must match nfile) 138 next nodeptr # next redirection in list (must match nfile) 139 139 doc nodeptr # input to command (NARG node) 140 140
Note:
See TracChangeset
for help on using the changeset viewer.