Display output with awk without brackets
I want my output to display in a certain way.
I have the code beneath but i want to display the dates without the on both sides:
icat -o 2048 someimage.E01 171 | grep /etc | awk 'print $1 "t" $7 " t" $4 $5 '
167.22.123.17 /home/me/file1 [13/Sep/2014:12:52:16-0400]
167.22.123.17 /home/me/file2 [13/Sep/2014:12:53:44-0400]
I want it to be displayed like:
167.22.123.17 /home/me/file1 [13/Sep/2014:12:52:16-0400]
167.22.123.17 /home/me/file2 [13/Sep/2014:12:53:44-0400]
I looked around on the internet but i can't find a solution that works. Some assistance would be great!
awk
add a comment |
I want my output to display in a certain way.
I have the code beneath but i want to display the dates without the on both sides:
icat -o 2048 someimage.E01 171 | grep /etc | awk 'print $1 "t" $7 " t" $4 $5 '
167.22.123.17 /home/me/file1 [13/Sep/2014:12:52:16-0400]
167.22.123.17 /home/me/file2 [13/Sep/2014:12:53:44-0400]
I want it to be displayed like:
167.22.123.17 /home/me/file1 [13/Sep/2014:12:52:16-0400]
167.22.123.17 /home/me/file2 [13/Sep/2014:12:53:44-0400]
I looked around on the internet but i can't find a solution that works. Some assistance would be great!
awk
3
Your current and desired outputs are the same. I'm guessing that's just a copy-and-paste mistake.
– IMSoP
Nov 14 '18 at 10:14
1
Try addingsub(/[/, "", $4); sub(/]/, "", $5);
after{
if your Field 4 contains[
and Field 5 contains]
. To remove all[
or]
s, usegsub(//, "", $4)
andgsub(//, "", $5)
.
– Wiktor Stribiżew
Nov 14 '18 at 10:18
can you present the output oficat
– kvantour
Nov 14 '18 at 13:45
add a comment |
I want my output to display in a certain way.
I have the code beneath but i want to display the dates without the on both sides:
icat -o 2048 someimage.E01 171 | grep /etc | awk 'print $1 "t" $7 " t" $4 $5 '
167.22.123.17 /home/me/file1 [13/Sep/2014:12:52:16-0400]
167.22.123.17 /home/me/file2 [13/Sep/2014:12:53:44-0400]
I want it to be displayed like:
167.22.123.17 /home/me/file1 [13/Sep/2014:12:52:16-0400]
167.22.123.17 /home/me/file2 [13/Sep/2014:12:53:44-0400]
I looked around on the internet but i can't find a solution that works. Some assistance would be great!
awk
I want my output to display in a certain way.
I have the code beneath but i want to display the dates without the on both sides:
icat -o 2048 someimage.E01 171 | grep /etc | awk 'print $1 "t" $7 " t" $4 $5 '
167.22.123.17 /home/me/file1 [13/Sep/2014:12:52:16-0400]
167.22.123.17 /home/me/file2 [13/Sep/2014:12:53:44-0400]
I want it to be displayed like:
167.22.123.17 /home/me/file1 [13/Sep/2014:12:52:16-0400]
167.22.123.17 /home/me/file2 [13/Sep/2014:12:53:44-0400]
I looked around on the internet but i can't find a solution that works. Some assistance would be great!
awk
awk
edited Nov 14 '18 at 10:26
RavinderSingh13
27.8k41638
27.8k41638
asked Nov 14 '18 at 10:13
user2492483user2492483
83
83
3
Your current and desired outputs are the same. I'm guessing that's just a copy-and-paste mistake.
– IMSoP
Nov 14 '18 at 10:14
1
Try addingsub(/[/, "", $4); sub(/]/, "", $5);
after{
if your Field 4 contains[
and Field 5 contains]
. To remove all[
or]
s, usegsub(//, "", $4)
andgsub(//, "", $5)
.
– Wiktor Stribiżew
Nov 14 '18 at 10:18
can you present the output oficat
– kvantour
Nov 14 '18 at 13:45
add a comment |
3
Your current and desired outputs are the same. I'm guessing that's just a copy-and-paste mistake.
– IMSoP
Nov 14 '18 at 10:14
1
Try addingsub(/[/, "", $4); sub(/]/, "", $5);
after{
if your Field 4 contains[
and Field 5 contains]
. To remove all[
or]
s, usegsub(//, "", $4)
andgsub(//, "", $5)
.
– Wiktor Stribiżew
Nov 14 '18 at 10:18
can you present the output oficat
– kvantour
Nov 14 '18 at 13:45
3
3
Your current and desired outputs are the same. I'm guessing that's just a copy-and-paste mistake.
– IMSoP
Nov 14 '18 at 10:14
Your current and desired outputs are the same. I'm guessing that's just a copy-and-paste mistake.
– IMSoP
Nov 14 '18 at 10:14
1
1
Try adding
sub(/[/, "", $4); sub(/]/, "", $5);
after {
if your Field 4 contains [
and Field 5 contains ]
. To remove all [
or ]
s, use gsub(//, "", $4)
and gsub(//, "", $5)
.– Wiktor Stribiżew
Nov 14 '18 at 10:18
Try adding
sub(/[/, "", $4); sub(/]/, "", $5);
after {
if your Field 4 contains [
and Field 5 contains ]
. To remove all [
or ]
s, use gsub(//, "", $4)
and gsub(//, "", $5)
.– Wiktor Stribiżew
Nov 14 '18 at 10:18
can you present the output of
icat
– kvantour
Nov 14 '18 at 13:45
can you present the output of
icat
– kvantour
Nov 14 '18 at 13:45
add a comment |
2 Answers
2
active
oldest
votes
This might work:
icat -o 2048 someimage.E01 171 | awk -v OFS="t" '//etc/print $1,$7, substr($4,2) substr($5,1,length($5)-1) '
And this could also work:
icat -o 2048 someimage.E01 171 | awk 'BEGINFS="[[:blank:]]+";OFS="t"//etc/print $1,$7,$4 $5 '
add a comment |
Could you please try the following. I am using --re-interval
since I am having old awk
you could remove it in case you have a new version of awk
.
awk --re-interval '
match($0,/[[0-9]+/[a-zA-Z]3/[0-9]4:[0-9]2:[0-9]2:[0-9]2-[0-9]4]/)
print substr($0,1,RSTART-1),substr($0,RSTART+1,RLENGTH-2),substr($0,RSTART+RLENGTH+1)
next
1
' Input_file
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53297699%2fdisplay-output-with-awk-without-brackets%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
This might work:
icat -o 2048 someimage.E01 171 | awk -v OFS="t" '//etc/print $1,$7, substr($4,2) substr($5,1,length($5)-1) '
And this could also work:
icat -o 2048 someimage.E01 171 | awk 'BEGINFS="[[:blank:]]+";OFS="t"//etc/print $1,$7,$4 $5 '
add a comment |
This might work:
icat -o 2048 someimage.E01 171 | awk -v OFS="t" '//etc/print $1,$7, substr($4,2) substr($5,1,length($5)-1) '
And this could also work:
icat -o 2048 someimage.E01 171 | awk 'BEGINFS="[[:blank:]]+";OFS="t"//etc/print $1,$7,$4 $5 '
add a comment |
This might work:
icat -o 2048 someimage.E01 171 | awk -v OFS="t" '//etc/print $1,$7, substr($4,2) substr($5,1,length($5)-1) '
And this could also work:
icat -o 2048 someimage.E01 171 | awk 'BEGINFS="[[:blank:]]+";OFS="t"//etc/print $1,$7,$4 $5 '
This might work:
icat -o 2048 someimage.E01 171 | awk -v OFS="t" '//etc/print $1,$7, substr($4,2) substr($5,1,length($5)-1) '
And this could also work:
icat -o 2048 someimage.E01 171 | awk 'BEGINFS="[[:blank:]]+";OFS="t"//etc/print $1,$7,$4 $5 '
answered Nov 14 '18 at 13:47
kvantourkvantour
8,74831330
8,74831330
add a comment |
add a comment |
Could you please try the following. I am using --re-interval
since I am having old awk
you could remove it in case you have a new version of awk
.
awk --re-interval '
match($0,/[[0-9]+/[a-zA-Z]3/[0-9]4:[0-9]2:[0-9]2:[0-9]2-[0-9]4]/)
print substr($0,1,RSTART-1),substr($0,RSTART+1,RLENGTH-2),substr($0,RSTART+RLENGTH+1)
next
1
' Input_file
add a comment |
Could you please try the following. I am using --re-interval
since I am having old awk
you could remove it in case you have a new version of awk
.
awk --re-interval '
match($0,/[[0-9]+/[a-zA-Z]3/[0-9]4:[0-9]2:[0-9]2:[0-9]2-[0-9]4]/)
print substr($0,1,RSTART-1),substr($0,RSTART+1,RLENGTH-2),substr($0,RSTART+RLENGTH+1)
next
1
' Input_file
add a comment |
Could you please try the following. I am using --re-interval
since I am having old awk
you could remove it in case you have a new version of awk
.
awk --re-interval '
match($0,/[[0-9]+/[a-zA-Z]3/[0-9]4:[0-9]2:[0-9]2:[0-9]2-[0-9]4]/)
print substr($0,1,RSTART-1),substr($0,RSTART+1,RLENGTH-2),substr($0,RSTART+RLENGTH+1)
next
1
' Input_file
Could you please try the following. I am using --re-interval
since I am having old awk
you could remove it in case you have a new version of awk
.
awk --re-interval '
match($0,/[[0-9]+/[a-zA-Z]3/[0-9]4:[0-9]2:[0-9]2:[0-9]2-[0-9]4]/)
print substr($0,1,RSTART-1),substr($0,RSTART+1,RLENGTH-2),substr($0,RSTART+RLENGTH+1)
next
1
' Input_file
edited Nov 14 '18 at 15:35
kvantour
8,74831330
8,74831330
answered Nov 14 '18 at 10:31
RavinderSingh13RavinderSingh13
27.8k41638
27.8k41638
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53297699%2fdisplay-output-with-awk-without-brackets%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
3
Your current and desired outputs are the same. I'm guessing that's just a copy-and-paste mistake.
– IMSoP
Nov 14 '18 at 10:14
1
Try adding
sub(/[/, "", $4); sub(/]/, "", $5);
after{
if your Field 4 contains[
and Field 5 contains]
. To remove all[
or]
s, usegsub(//, "", $4)
andgsub(//, "", $5)
.– Wiktor Stribiżew
Nov 14 '18 at 10:18
can you present the output of
icat
– kvantour
Nov 14 '18 at 13:45