blob: ac657efe692528fbff8cef97298b36f3a0b754c0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
include defs
# outsub - determine if argument is STDOUT substitution
integer function outsub (arg, file, access)
character arg (ARB), file (ARB)
integer access
if (arg (1) == GREATER & arg (2) != GREATER & arg (2) != EOS) {
outsub = YES
access = WRITE
call scopy (arg, 2, file, 1)
}
else if (arg (1) == GREATER & arg (2) == GREATER & arg (3) != EOS) {
access = APPEND
outsub = YES
call scopy (arg, 3, file, 1)
}
else
outsub = NO
return
end
|