mirror of
https://github.com/zplug/zplug
synced 2025-04-20 00:08:04 +02:00
18 lines
179 B
Awk
18 lines
179 B
Awk
#!/usr/bin/env awk
|
|
|
|
BEGIN {
|
|
FS = "/";
|
|
}
|
|
|
|
{
|
|
if ($2 == pkg)
|
|
list[i++] = $0;
|
|
}
|
|
|
|
END {
|
|
if (length(list) == 1)
|
|
print list[0];
|
|
else
|
|
print pkg;
|
|
}
|