Learn about Linux
Download Linux
Get Linux help
Get special offers on:
Linux Application Dev Programming Software
Email:
#
Return to Viewing Word files at the command line
© Copyright 1999-2008 - SourceForge, Inc., All Rights Reserved About Linux.com - Privacy Statement - Terms of Use - Advertise - Trademark - Ask Linux Questions - Write for Us - RSS Feed ThinkGeek - Slashdot - SourceForge.net - freshmeat - Surveys - Jobs
Re:strings
Posted by: Anonymous Coward on March 02, 2006 09:23 PM#!/usr/contrib/bin/perl -w
binmode STDIN;
my $data;
while ( read(STDIN, $data, 80)) {
print "$data \n";
}
Which does the job
Just change the'80' if you want larger lines
And yes embedded pictures just cause funning lines, but it is a simple starter
#