K 10 svn:author V 3 phk K 8 svn:date V 27 1994-10-22T11:55:16.000000Z K 7 svn:log V 326 Make the diagnostics a little more useful. A word of wisdom, don't do this: | cd /usr/bin | for i in * | do | cp $i /tmp/a | gzip -9 < /tmp/a > $i | done It will compress files with multiple links several times. do it this way: | cd /usr/bin | for i in * | do | gunzip -f < $i > /tmp/a | gzip -9 < /tmp/a > $i | done END