From: Stephen Samuel <samuel@bcgreen.com>
To: Peter <pfheiss@philonline.com>, linux-newbie@vger.kernel.org
Subject: Re: Text Reformatting
Date: Mon, 19 May 2003 08:44:13 -0700 [thread overview]
Message-ID: <3EC8FBCD.1030804@bcgreen.com> (raw)
In-Reply-To: <20030518041124.07222103AE@pfheiss>
Peter wrote:
> Hi,
>
> Some text I download for printing are formatted like:
>
> Because of the publicity the Iraqi government has given to the
> issue, Iraqis worry about DU.
>
> which adds more pages for printing.
>
> How can I with some command, left align the text to read
>
> Because of the publicity the Iraqi government has given to the
> issue, Iraqis worry about DU.
>
> yet maintaining the paragraphs.
>
> When looking at the text with a word processor they are all left aligned and
> can only be changed manually line by line.
>
> I came up with the sausage
>
> cat file.txt | tr -s " " "\012" > file1.txt | fmt -u -w 105 file1.txt >
> file2.txt
>
> This does not maintain the paragraphs, however. Can sed do it and how?
>
> Thanks & regards
Mostly what you want to do is delete the leading spaces then reformat.
As long as paragraphs are separated by blank lines, the following should
work:
sed 's/^[ \t]+//' file | fmt -u -w105 > file2.txt
----------------------------------
Note that when you do the " tr [options] > somefile | fmt [options] somefile" ,
you're losing any advantage of using a pipe. The output for the
tr file is redirected into somefile, and fmt is reading explicitly
from there. The pipe is essentially unused... Either :
tr [options] | fmt [options]
or:
tr [options] > somefile ; fmt [options] somefile
The main difference: The former properly uses pipes
The later simply acknowledges that the pipe really isn't being used.
--
Stephen Samuel +1(604)876-0426 samuel@bcgreen.com
http://www.bcgreen.com/~samuel/
Powerful committed communication, reaching through fear, uncertainty and
doubt to touch the jewel within each person and bring it to life.
-
To unsubscribe from this list: send the line "unsubscribe linux-newbie" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.linux-learn.org/faqs
next prev parent reply other threads:[~2003-05-19 15:44 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <pfheiss@philonline.com>
2003-05-18 4:11 ` Text Reformatting Peter
2003-05-18 4:23 ` CaT
2003-05-18 4:23 ` raihan
2003-05-18 7:54 ` John Kelly
2003-05-19 15:44 ` Stephen Samuel [this message]
2003-05-20 2:47 ` Peter
2003-05-20 9:59 ` Stephen Samuel
2003-05-19 2:25 Peter
2003-05-19 12:17 ` Amin
2003-05-20 2:46 ` Peter
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=3EC8FBCD.1030804@bcgreen.com \
--to=samuel@bcgreen.com \
--cc=linux-newbie@vger.kernel.org \
--cc=pfheiss@philonline.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox