From: Dmitry Azhichakov <admitry@rol.ru>
To: community@altlinux.ru
Subject: Re: [Comm] Замена концов строк
Date: Fri, 26 Dec 2003 10:19:37 +0300
Message-ID: <20031226071937.GB20414@tower> (raw)
In-Reply-To: <200312242059.45495.LAV@VL3143.spb.edu>
Доброго времени суток.
On Wed, Dec 24, 2003 at 08:59:45PM +0300, Vitaly Lipatov wrote:
> On 24 Декабрь 2003 19:59, Igor Homyakov wrote:
> > $ cat dos2unix
> > tr -d "\r"
> Ну это понятно...
>
> > $ cat unix2dos
> > awk '{ printf "%s\r\n", $0 }'
> > ну или
> > sed s/\r/\r\n/
> Вот не работает ни тот, ни тот вариант.
> Хорошо вы навели меня на мысль поискать dos2unix и я нашёл пакет
> hd2u, в котором таки есть программа, в совершенстве владеющая
> переводом. А вот почему sed не работает, я до сих пор не
> понимаю.
Ну, во-первых, если такими regexp'ами писать, то 's/\n/\r\n/' :)
Во-вторых, в sed это тоже работать не будет. sed держит строки в pattern
space без \n. Поэтому делается это так:
sed -e 's/$/\r/'
Но это небезопасно, т.к. если файл уже с концами строк CRLF, то
получится CRCRLF. Безопасный вариант такой:
sed -e 's/\r\?$/\r/'
В обратную сторону, соответственно:
sed -e 's/\r$//'
--
С уважением,
Димыч
next prev parent reply other threads:[~2003-12-26 7:19 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-12-24 16:35 Vitaly Lipatov
2003-12-24 16:42 ` Sergey Vlasov
2003-12-24 16:59 ` Igor Homyakov
2003-12-24 17:59 ` Vitaly Lipatov
2003-12-26 7:19 ` Dmitry Azhichakov [this message]
2003-12-24 17:55 ` Sergey Lizogub
2003-12-24 18:12 ` V.Sokolov
2003-12-24 19:06 ` Vitaly Lipatov
2003-12-24 19:33 ` V.Sokolov
2003-12-24 21:19 ` Vitaly Lipatov
2003-12-24 21:24 ` Vitaly Lipatov
2003-12-26 7:52 ` Dmitry Alexeyev
2003-12-24 18:18 ` Vitaly Lipatov
2003-12-24 19:27 ` Sergey Lizogub
2003-12-24 19:36 ` Vitaly Lipatov
2003-12-24 21:16 ` Alexey Voinov
2003-12-24 21:23 ` Vitaly Lipatov
2003-12-25 7:01 ` Alexey Voinov
2003-12-25 14:43 ` Alexandr R. Ogurtzoff
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=20031226071937.GB20414@tower \
--to=admitry@rol.ru \
--cc=community@altlinux.ru \
/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
ALT Linux Community general discussions
This inbox may be cloned and mirrored by anyone:
git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git
# If you have public-inbox 1.1+ installed, you may
# initialize and index your mirror using the following commands:
public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
public-inbox-index community
Example config snippet for mirrors.
Newsgroup available over NNTP:
nntp://lore.altlinux.org/org.altlinux.lists.community
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git