Templier Antony wrote:
> Hi,
> 
> Is there is a way to produce ascii file with no limit to lenght of
> line for each bloc text ?

Add this to your .lyx/preferences file. (If the file doesn't exist, 
create a new one.)

\ascii_linelen your_length

Alternatively, use the Preferences dialog (Edit->Preferences) and the 
Outputs->ASCII pane (Qt) or Outputs->Misc tab (xforms)

That will put set the linelength for each paragraph.

If you really want a file with no line breaks, use sed. Eg

sed ':loop
$!{
N
s/\n/ /
tloop
}' your_file.txt > a_file_with_a_single_really_long_line.txt

Of course, this assumes that you are using an OS that has sed (-;

-- 
Angus

Reply via email to