09/08/26 20:52:58 VfaWlTot
LFS BOOKにあったstripコマンドなんですが
これを
/tools/bin/find /{,usr/}{bin,lib,sbin} -type f \
-exec /tools/bin/strip --strip-debug '{}' ';'
こう言う風に書き換えても上記と等しくstrip出来てるんでしょうか?
for i in $(/tools/bin/find /{,usr/}{bin,lib,sbin} -type f);do
/tools/bin/strip --strip-debug $i
done