* [Comm] delimiter in awk
@ 2004-12-03 16:54 Andrey Rybak
2004-12-03 17:03 ` Alexey Rusakov
2004-12-03 17:03 ` Michael Isachenkov
0 siblings, 2 replies; 3+ messages in thread
From: Andrey Rybak @ 2004-12-03 16:54 UTC (permalink / raw)
To: community
Hello, Alt!
Подскажите, как в awk задать табулятор разделителем полей.
Обрабатываю текстовый файл. Создается он в сишной программе таким
образом: fprintf(uk, "%f\t%f\t%f\n" ,a,b,c), но в командной строке
табуляция имеет свое особое предназначение, как известно...
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Comm] delimiter in awk
2004-12-03 16:54 [Comm] delimiter in awk Andrey Rybak
@ 2004-12-03 17:03 ` Alexey Rusakov
2004-12-03 17:03 ` Michael Isachenkov
1 sibling, 0 replies; 3+ messages in thread
From: Alexey Rusakov @ 2004-12-03 17:03 UTC (permalink / raw)
To: community
On 03.12.2004 19:54, Andrey Rybak wrote:
> Подскажите, как в awk задать табулятор разделителем полей.
> Обрабатываю текстовый файл. Создается он в сишной программе таким
> образом: fprintf(uk, "%f\t%f\t%f\n" ,a,b,c), но в командной строке
> табуляция имеет свое особое предназначение, как известно...
Вообще-то по умолчанию awk использует регулярное выражение "[[:blank:]]"
для определения разделителей (AFAIK). Если вам нужны исключительно
табуляторы, передайте в awk параметр -F'\t' либо в самом awk-скрипте
пропишите
BEGIN { FS="\\t" }
По-моему, так.
--
Alexey "Ktirf" Rusakov
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Comm] delimiter in awk
2004-12-03 16:54 [Comm] delimiter in awk Andrey Rybak
2004-12-03 17:03 ` Alexey Rusakov
@ 2004-12-03 17:03 ` Michael Isachenkov
1 sibling, 0 replies; 3+ messages in thread
From: Michael Isachenkov @ 2004-12-03 17:03 UTC (permalink / raw)
To: community
в простейшем случае так:
~ > cat dyrdyr | awk -F "\t" '{print $1}'
123
~ > cat dyrdyr | awk -F "\t" '{print $2}'
456
~ > cat dyrdyr
123 456
>> Hello, Alt!
> Подскажите, как в awk задать табулятор разделителем полей.
> Обрабатываю текстовый файл. Создается он в сишной программе таким
> образом: fprintf(uk, "%f\t%f\t%f\n" ,a,b,c), но в командной строке
> табуляция имеет свое особое предназначение, как известно...
>
--
Best regards, Michael Isachenkov
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2004-12-03 17:03 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-12-03 16:54 [Comm] delimiter in awk Andrey Rybak
2004-12-03 17:03 ` Alexey Rusakov
2004-12-03 17:03 ` Michael Isachenkov
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