7 lines
105 B
Plaintext
7 lines
105 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
EBUILD=`find ${PWD} -type f -name '*.ebuild'`
|
||
|
|
||
|
for J in $EBUILD ; do
|
||
|
ebuild $J digest
|
||
|
done
|