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