2012/05/10

ログファイルを 検索して圧縮するsh

#!/bin/sh
LOGS=`ls .| grep -E "*.log$"`
for f in $LOGS
do
gzip $f
echo " -- END gzip! $f -- " #DEBUG
done

0 件のコメント: