Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Replace period in a tab delimited file to a number Post 302949779 by genehunter on Thursday 16th of July 2015 01:52:04 AM
Old 07-16-2015
Quote:
Originally Posted by sea
For the future, please use CODE tags, not icode for multiple lines, as you agreed with the forum rules.

A simple:
Code:
sed s,"\.\t","-999\t",g /tmp/example2.txt

Should do the trick, replacing the dot with -999.

hth
it did not work correctly.
It changed a bunch of columns with
Code:
 ./. to ./-999

Same with the perl solution.
I guess, my example did not have fields with "./."
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Converting Tab delimited file to Comma delimited file in Unix

Hi, Can anyone let me know on how to convert a Tab delimited file to Comma delimited file in Unix Thanks!! (22 Replies)
Discussion started by: charan81
22 Replies

2. UNIX for Dummies Questions & Answers

Converting Space delimited file to Tab delimited file

Hi all, I have a file with single white space delimited values, I want to convert them to a tab delimited file. I tried sed, tr ... but nothing is working. Thanks, Rajeevan D (16 Replies)
Discussion started by: jeevs81
16 Replies

3. UNIX for Advanced & Expert Users

Problem while counting number of fields in TAB delimited file

I'm facing a strange problem, please help me out. Here we go. I want to count number of fields in particular file. filename and delimiter character will be passed through parameter. On command prompt if i type following i get 27 as output (which is correct) cat customer.dat | head -1 | awk... (12 Replies)
Discussion started by: vikanna
12 Replies

4. UNIX for Advanced & Expert Users

merge two tab delimited file with exact same number of rows in unix/linux

Hi I have two tab delimited file with different number of columns but same number of rows. I need to combine these two files in such a way that row 1 in file 2 comes adjacent to row 1 in file 1. For example: The content of file1: field1 field2 field3 a1 a2 a3 b1 b2 b3... (2 Replies)
Discussion started by: mary271
2 Replies

5. UNIX for Dummies Questions & Answers

tab delimited file that is not tab delimited.

Hi Forum I have a tab delimited file that opens well in Openoffice calc (excel). But when I perform any operation in command line, it reads the file incorrectly. When I 'save As' the same file in office as tab delimited then it works fine. The file that I think is tab delimited is actually... (8 Replies)
Discussion started by: imlearning
8 Replies

6. Shell Programming and Scripting

Help with converting Pipe delimited file to Tab Delimited

I have a file which was pipe delimited, I need to make it tab delimited. I tried with sed but no use cat file | sed 's/|//t/g' The above command substituted "/t" not tab in the place of pipe. Sample file: abc|123|2012-01-30|2012-04-28|xyz have to convert to: abc 123... (6 Replies)
Discussion started by: karumudi7
6 Replies

7. Shell Programming and Scripting

How to make tab delimited file to space delimited?

Hi How to make tab delimited file to space delimited? in put file: ABC kgy jkh ghj ash kjl o/p file: ABC kgy jkh ghj ash kjl Use code tags, thanks. (1 Reply)
Discussion started by: jagdishrout
1 Replies

8. UNIX for Dummies Questions & Answers

Need to convert a pipe delimited text file to tab delimited

Hi, I have a rquirement in unix as below . I have a text file with me seperated by | symbol and i need to generate a excel file through unix commands/script so that each value will go to each column. ex: Input Text file: 1|A|apple 2|B|bottle excel file to be generated as output as... (9 Replies)
Discussion started by: raja kakitapall
9 Replies

9. Shell Programming and Scripting

Replace a number in the last line of a delimited file.

Hi all, I am fairly new to UNIX and I was wondering if you could provide me with some help! Lets say i have a file as below : Line 1 Line 2 Line 3 ABC|12|4|2 Now the number 4 in bold, this number will represent the number of row there is in the file excluding the header and footer... (10 Replies)
Discussion started by: Stinza
10 Replies

10. UNIX for Beginners Questions & Answers

Replace a column in tab delimited file with column in other tab delimited file,based on match

Hello Everyone.. I want to replace the retail col from FileI with cstp1 col from FileP if the strpno matches in both files FileP.txt ... (2 Replies)
Discussion started by: YogeshG
2 Replies
TBL(7)						       BSD Miscellaneous Information Manual						    TBL(7)

NAME
tbl -- tbl language reference for mandoc DESCRIPTION
The tbl language is a table-formatting language. It is used within mdoc(7) and man(7) UNIX manual pages. This manual describes the subset of the tbl language accepted by the mandoc(1) utility. Tables within mdoc(7) or man(7) are enclosed by the 'TS' and 'TE' macro tags, whose precise syntax is documented in roff(7). Tables consist of a series of options on a single line, followed by the table layout, followed by data. For example, the following creates a boxed table with digits centred in the cells. .TS tab(:) box; c5 c5 c5. 1:2:3 4:5:6 .TE When formatted, the following output is produced: +--------------+ |1 2 3 | |4 5 6 | +--------------+ The tbl implementation in mandoc(1) is currently under development. TABLE STRUCTURE
Tables are enclosed by the 'TS' and 'TE' roff(7) macros. A table consists of an optional single line of table Options terminated by a semi- colon, followed by one or more lines of Layout specifications terminated by a period, then Data. All input must be 7-bit ASCII. Example: .TS box tab(:); c | c | c | c. 1:2 3:4 .TE Table data is pre-processed, that is, data rows are parsed then inserted into the underlying stream of input data. This allows data rows to be interspersed by arbitrary roff(7), mdoc(7), and man(7) macros such as .TS tab(:); c c c. 1:2:3 .Ao 3:2:1 .Ac .TE in the case of mdoc(7) or .TS tab(:); c c c. .ds ab 2 1:*(ab:3 .I 3:2:1 .TE in the case of man(7). Options The first line of a table consists of space-separated option keys and modifiers terminated by a semicolon. If the first line does not have a terminating semicolon, it is assumed that no options are specified and instead a Layout is processed. Some options accept arguments enclosed by parenthesis. The following case-insensitive options are available: center This option is not supported by mandoc(1). This may also be invoked with centre. delim Accepts a two-character argument. This option is not supported by mandoc(1). expand This option is not supported by mandoc(1). box Draw a single-line box around the table. This may also be invoked with frame. doublebox Draw a double-line box around the table. This may also be invoked with doubleframe. allbox This option is not supported by mandoc(1). tab Accepts a single-character argument. This character is used as a delimiter between data cells, which otherwise defaults to the tab character. linesize Accepts a natural number (all digits). This option is not supported by mandoc(1). nokeep This option is not supported by mandoc(1). decimalpoint Accepts a single-character argument. This character will be used as the decimal point with the n layout key. nospaces This option is not supported by mandoc(1). Layout The table layout follows Options or a 'T&' macro invocation. Layout specifies how data rows are displayed on output. Each layout line cor- responds to a line of data; the last layout line applies to all remaining data lines. Layout lines may also be separated by a comma. Each layout cell consists of one of the following case-insensitive keys: c Centre a literal string within its column. r Right-justify a literal string within its column. l Left-justify a literal string within its column. n Justify a number around its last decimal point. If the decimal point is not found on the number, it's assumed to trail the number. s Horizontally span columns from the last non-s data cell. It is an error if spanning columns follow a - or | cell, or come first. This option is not supported by mandoc(1). a Left-justify a literal string and pad with one space. ^ Vertically span rows from the last non-^ data cell. It is an error to invoke a vertical span on the first layout row. Unlike a hor- izontal spanner, you must specify an empty cell (if it not empty, the data is discarded) in the corresponding data cell. - Replace the data cell (its contents will be lost) with a single horizontal line. This may also be invoked with _. = Replace the data cell (its contents will be lost) with a double horizontal line. | Emit a vertical bar instead of data. || Emit a double-vertical bar instead of data. Keys may be followed by a set of modifiers. A modifier is either a modifier key or a natural number for specifying the minimum width of a column. The following case-insensitive modifier keys are available: z, u, e, t, d, b, i, r, and f (followed by b, i, r, 3, 2, or 1). All of these are ignored by mandoc(1). For example, the following layout specifies a centre-justified column of minimum width 10, followed by vertical bar, followed by a left-jus- tified column of minimum width 10, another vertical bar, then a column justified about the decimal point in numbers: c10 | l10 | n Data The data section follows the last layout row. By default, cells in a data section are delimited by a tab. This behaviour may be changed with the tab option. If _ or = is specified, a single or double line, respectively, is drawn across the data field. If - or = is speci- fied, a line is drawn within the data field (i.e. terminating within the cell and not draw to the border). If the last cell of a line is T{, all subsequent lines are included as part of the cell until T} is specified as its own data cell. It may then be followed by a tab (or as designated by tab) or an end-of-line to terminate the row. COMPATIBILITY
This section documents compatibility between mandoc and other tbl implementations, at this time limited to GNU tbl. - In GNU tbl, comments and macros are disallowed prior to the data block of a table. The mandoc(1) implementation allows them. SEE ALSO
mandoc(1), man(7), mandoc_char(7), mdoc(7), roff(7) M. E. Lesk, Tbl--A Program to Format Tables, June 11, 1976. HISTORY
The tbl utility, a preprocessor for troff, was originally written by M. E. Lesk at Bell Labs in 1975. The GNU reimplementation of tbl, part of the groff package, was released in 1990 by James Clark. A standalone tbl implementation was written by Kristaps Dzonsons in 2010. This formed the basis of the implementation that is part of the mandoc(1) utility. AUTHORS
This tbl reference was written by Kristaps Dzonsons, kristaps@bsd.lv. BSD
September 3, 2011 BSD
All times are GMT -4. The time now is 11:24 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy