5 lines
222 B
Plaintext
5 lines
222 B
Plaintext
|
#!/bin/bash -e
|
||
|
while read p; do
|
||
|
test -e $p || echo $p;
|
||
|
done < <(curl -s -f https://api.opensuse.org/public/source/openSUSE:Factory:Rings:0-Bootstrap|sed -ne 's/.*entry name="\([^":]*\).*\/>/\1/p'|sort -u | grep -v AGGR)
|