[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
have the same column L
From: |
Krem |
Subject: |
have the same column L |
Date: |
Thu, 13 Jul 2017 18:29:54 -0700 (MST) |
Hi all,
How can I starndarzied string column to have the same column length for each
row.
Example
filename
A135953
D10036050
C135858000
I want add leading zeros and the column length should be 10
I tried
awk '{ printf "%010s \n", $1}' filename
Got all zeros
0000000000
0000000000
0000000000
0000000000
But I want
000A135953
0D10036050
C135858000
I would appreciate if you help me out.
thank you in advance
--
View this message in context:
http://gnu-bash.2382.n7.nabble.com/have-the-same-column-L-tp19574.html
Sent from the Gnu - Bash mailing list archive at Nabble.com.
- have the same column L,
Krem <=