obstruct pod2man doc tweaks
[p5sagit/p5-mst-13.2.git] / vms / genopt.com
CommitLineData
a0d0e21e 1$! generates options file for vms link
2$! p1 is filename and mode to open file (filename/write or filename/append)
3$! p2 is delimiter separating elements of list in p3
4$! p3 is list of items to be written, one per line, into options file
5$
6$ open file 'p1'
7$ element=0
8$loop:
9$ x=f$element(element,p2,p3)
10$ if x .eqs. p2 then goto out
11$ y=f$edit(x,"COLLAPSE") ! lose spaces
5f05dabc 12$! Expand potential name-only args so we find shareable images
13$! either via a logical name or in the default location
14$ if y .nes. "" .and. -
15 f$locate("/SHARE",f$edit(y,"UPCASE")) .ne. f$length(y)
16$ then
17$ name = f$element(0,"/",y)
18$ tail = f$extract(f$length(name),1024,y)
19$ name = f$parse(name,"sys$share:.exe;") ! Look where image activator will
20$ name = f$search(name) ! Does it really exist?
21$ if name .nes. ""
22$ then
23$ name = name - f$parse(name,,,"version") ! Insist on current version
24$ y = name + tail
25$ endif
26$ endif
a0d0e21e 27$ if y .nes. "" then write file y
28$ element=element+1
29$ goto loop
30$
31$out:
32$ close file
33$ exit