Posted By: Tuttle (MamPoLetechJinyUsername!) on 'CZunix'
Title:     Re: inteligentni sort
Date:      Tue Aug 19 15:08:20 2008

> $ (for file in * ; do cat $file ; done ) | wc -l

Doporucuju efektivnejsi a bez limitu:

find -maxdepth 1 -type f -print0 | xargs -0 cat

Plus vyhoda, ze sada souboru jde velmi flexibilne uprasnit parametry findu.

T.

Search the boards