home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Piper's Pit BBS/FTP: ibm 0210 - 0219
/
ibm0210-0219
/
ibm0213.tar
/
ibm0213
/
HAM_W32.ZIP
/
SAMPLES
/
MEMBER.CSH
< 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
Text File
|
1994-05-12
|
286 b
|
15 lines
# Determine if first argument word appears somewhere in the list given
# by the second argument.
# Copyright (c) 1994 by Hamilton Laboratories. All rights reserved.
proc member ( a, b )
local i
foreach i ($b)
if (a == i) return 1
end
return 0
end
member $argv