home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DTP Toolbox
/
DTPToolbox.iso
/
propage4.0
/
arexx
/
splitpath.rexx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
OS/2 REXX Batch file
|
1992-06-17
|
229 b
|
14 lines
/*
SplitPath.rexx
This Genie will split the path from a pathname
*/
parse arg path
colon = lastpos('/', path)
if colon = 0 then colon = lastpos(':', path)
if colon = 0 then return(path)
else return(substr(path, colon + 1))