8 lines
106 B
Plaintext
8 lines
106 B
Plaintext
|
#!/bin/sh -efu
|
||
|
while IFS=$'\t' read -r f t; do
|
||
|
case "$f" in
|
||
|
*/.provides.sh)
|
||
|
echo "$f" ;;
|
||
|
esac
|
||
|
done
|