|
|||||||
| Forums | Search Forums | Register | Forum Rules | Man Pages | Albums | FAQ | Members | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
|
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
Copying first column to be second column
Hi guys, Does anyone know how to copy the first column and paste it as the second column in a file? ![]() For example: Input: Code:
A 1 3 B 3 7 C 5 2 D 9 4 Output: Code:
A A 1 3 B B 3 7 C C 5 2 D D 9 4 Thank you very much!! Last edited by Franklin52; 12-05-2012 at 04:11 AM.. Reason: Please use code tags for data and code samples |
| Sponsored Links | ||
|
|
#2
|
||||
|
||||
|
Try: Code:
awk '{$1=$1" "$1}1' file |
| Sponsored Links | ||
|
|
#3
|
|||
|
|||
|
Thank you very much!!
![]() |
|
#4
|
||||
|
||||
|
Code:
$ awk '$2=$1" "$2' a.txt A A 1 3 B B 3 7 C C 5 2 D D 9 4 |
| Sponsored Links | |
|
|
#5
|
|||
|
|||
|
try also: Code:
sed 's/\([^ ]*\).*/\1 &/' input Code:
awk '{print $1,$0}' input |
| Sponsored Links | ||
|
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Rename a header column by adding another column entry to the header column name | Vavad | UNIX for Dummies Questions & Answers | 1 | 08-06-2011 01:02 PM |
| Rename a header column by adding another column entry to the header column name URGENT!! | Vavad | Shell Programming and Scripting | 4 | 08-05-2011 12:35 PM |
| Match column 3 in file1 to column 1 in file 2 and replace with column 2 from file2 | rydz00 | Shell Programming and Scripting | 7 | 11-09-2010 10:28 AM |
| Changing one column of delimited file column to fixed width column | manneni prakash | Shell Programming and Scripting | 5 | 06-22-2009 05:27 AM |
| How to check Null values in a file column by column if columns are Not NULLs | Mandab | Shell Programming and Scripting | 7 | 03-15-2008 09:57 AM |
|
|