Author: Robert Sample
Posted: Thu Dec 22, 2016 9:57 pm (GMT 5.5)
First, this makes no sense:
PATHMODE is used to define file attributes and having the same file attributes twice doesn't give you anything. There are separate file attributes for the user, the group, and the other permissions but specifying the same attributes more than once for user (or group or other) is doing nothing for you -- syntactically it is not wrong, but neither is it doing anything more than specifying the file attributes a single time.
Second, I have been reading the manuals and find no indication -- either way -- on whether or not it is possible to edit a FIFO file. The very name -- first in first out -- would imply that editing a FIFO file would make no sense. Have you tried to run your job and then use a cat command in Unix to list the contents?
_________________
TANSTAAFL
The first rule of code reuse is that the code needs to be worth re-using.
"We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil." -- Donald Knuth
Posted: Thu Dec 22, 2016 9:57 pm (GMT 5.5)
First, this makes no sense:
Code: |
// PATHMODE=(SIWUSR,SIWUSR), |
Second, I have been reading the manuals and find no indication -- either way -- on whether or not it is possible to edit a FIFO file. The very name -- first in first out -- would imply that editing a FIFO file would make no sense. Have you tried to run your job and then use a cat command in Unix to list the contents?
_________________
TANSTAAFL
The first rule of code reuse is that the code needs to be worth re-using.
"We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil." -- Donald Knuth