File:
[Coherent Logic Development] /
freem /
contrib /
%RD.m
Revision
1.1.1.1 (vendor branch):
download - view:
text,
annotated -
select for diffs
Sun Jan 19 02:04:04 2025 UTC (2 months, 2 weeks ago) by
snw
Branches:
MAIN,
CoherentLogicDevelopment
CVS tags:
v0-63-0-rc1,
v0-63-0,
v0-62-3,
v0-62-2,
v0-62-1,
v0-62-0,
start,
HEAD
FreeM
%RD ; A.Trocha; Routine Directory 01/29/1999 01:30/GMT+1
; $Source: /home/cvsroot/freem/contrib/%RD.m,v $
; $Revision: 1.1.1.1 $ $Date: 2025/01/19 02:04:04 $
; this version is very, very beta
; todo: LOCKING!!
;
N rnorm,rsys,xdir,anz,ext
;
;--- path to non-% routines
S rnorm=$V(4)
;
;--- path to %-routines
S rsys=$V(8)
;
;--- get routine extention
S ext=$V(98)
;
W !,?20,"ROUTINE DIRECTORY "_$ZD
W !,?23," OF FreeM "_$ZT
W !!
;
S anz=0
;
;--- get and output %-routines
K %
S xdir="!<"_$$dircmd()_" "_$$convpath(rsys)_"*"_ext_" 2>/dev/null"
S $ZT="error^"_$ZN
X xdir D show($$convpath(rsys),0)
;
;--- get and output non-% routines
K %
S xdir="!<"_$$dircmd()_" "_$$convpath(rnorm)_"*"_ext_" 2>/dev/null"
X xdir D show($$convpath(rnorm),1)
;
end W !,$J(anz,8)," - Routines",!!
K %
Q
;
show(path,m) ;--- show routines
; m=0 show %routines ; m=1 show non% routines
N i,out
F i=1:1:% D
. I $G(m)=0&('$F($G(%(i)),"%")) Q
. I $G(m)=1&($F($G(%(i)),"%")) Q
. S out=$G(%(i))
. I path'="" S out=$E(out,$L(path)+1,$L(out))
. S out=$E(out,1,$L(out)-$L(ext))
. W $$lb("^"_out) S anz=anz+1
Q
;
convpath(dir)
;--- convert path
N sl
S sl=$$slash()
I dir="" Q ""
I dir="."_sl Q ""
I $E(dir,$L(dir))'=sl Q dir_sl
Q dir
;
lb(str) ;---
Q $E(str,1,9)_$J("",10-$L(str))
;
slash() ;--- get the OS specific directory delimiter (slash)
Q "/"
;
dircmd() ;
;--- get the OS specific directory command
;--- hmm!? how do I know which OS?
Q "ls"
;
error ;--- error - trap
W !,$ZE,!!
K % Q
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>