Gitiles
Code Review
Sign In
gerrit.named-data.net
/
ndn-tools
/
c8a0a25a6713ccb5c1358455e34c49568beea856
/
.
/
.jenkins.d
/
util.sh
blob: 81c89311a7cf9cb7fe12dff74f74009cd5a45e7c [
file
] [
log
] [
blame
]
Junxiao Shi
439d972
2015-03-20 15:08:44 -0700
[
diff
] [
blame
]
1
has
()
{
2
local
p
=
$1
3
shift
4
local
x
5
for
x
in
"$@"
;
do
6
[[
"${x}"
==
"${p}"
]]
&&
return
0
7
done
8
return
1
9
}