formatovanie plain textu

Sekcia: Programovanie 07.11.2009 | 21:04
jur0   Návštevník
Ahoj, potreboval by som zarovnat riadky obycajneho textoveho suboru napr. na dlzku 80 znakov tak, aby neboli rozdelene slova. Existuje na to nejaka utilita? Dakujem za vsetky rady
    • Re: formatovanie plain textu 07.11.2009 | 23:13
      peto   Návštevník
      ak to chces spravit "trochu" lepsie - http://search.cpan.org/~mward/Text-Reflow-1.09/Reflow.pm
      ak nie, skus: cat __FILE__ | fmt -s
    • Re: formatovanie plain textu 08.11.2009 | 21:04
      dusan3838   Návštevník
      v textovom mcedit
    • Re: formatovanie plain textu 09.11.2009 | 10:10
      Peter S.   Návštevník
      fold - Wrap input lines to fit in specified width...
      • Re: formatovanie plain textu 09.11.2009 | 12:59
        peto   Návštevník
        meno fold rozdeli slovo - to nechcel
        • Re: formatovanie plain textu 09.11.2009 | 13:16
          Peter S.   Návštevník
          a tato voľba?:
          -s
          --spaces
          Break at word boundaries: the line is broken after the last blank
          before the maximum line length. If the line contains no such
          blanks, the line is broken at the maximum line length as usual.
          • Re: formatovanie plain textu 09.11.2009 | 14:35
            jur0   Návštevník
            diky, fold je presne to co som hladal ;)