The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
count no of words in a line Satyak Shell Programming and Scripting 3 09-26-2008 12:52 PM
how to get line number of different words if exists in same line Amiya Rath Shell Programming and Scripting 10 07-21-2008 10:55 AM
swaping of first 2 words in every line using sed web123 Shell Programming and Scripting 4 05-28-2008 10:02 AM
count no of words in a line satish@123 Shell Programming and Scripting 7 05-21-2008 03:59 AM
How to append words at the end of first line lmatlebyane Shell Programming and Scripting 11 02-28-2008 04:39 AM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Bulgarian Greek Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 10-07-2008
shellscripter shellscripter is offline
Registered User
  
 

Join Date: Oct 2008
Location: chennai
Posts: 16
Question remove first few words from a line

Hi All,

Sample:

4051 Oct 4 10:03:36 AM 2008: TEST: end of testcase Checking Interface after reload, result fail

I need to remove first 10 words of the above line and output should be like

Checking Interface after reload, result fail

Please help me in this regard.

Thanks,

  #2 (permalink)  
Old 10-07-2008
era era is offline Forum Advisor  
Herder of Useless Cats (On Sabbatical)
  
 

Join Date: Mar 2008
Location: /there/is/only/bin/sh
Posts: 3,652
If all the first ten fields are separated by a single space,

Code:
cut -d ' ' -f11- file
If the first ten characters will always contain exactly two colons, it might be simpler to split on those.

Code:
cut -d: -f3- file
(This would leave a leading space.)
  #3 (permalink)  
Old 10-07-2008
stanleypane stanleypane is offline
Registered User
  
 

Join Date: Mar 2008
Posts: 23
Thumbs down

If "testcase" always precedes the data you want, you can use awk and specify a delimeter like so:

Code:
awk -F'testcase ' '{print $2}'
  #4 (permalink)  
Old 10-07-2008
shellscripter shellscripter is offline
Registered User
  
 

Join Date: Oct 2008
Location: chennai
Posts: 16
Thanks for all the response. I will check the above commands and update the thread soon.
  #5 (permalink)  
Old 10-08-2008
shellscripter shellscripter is offline
Registered User
  
 

Join Date: Oct 2008
Location: chennai
Posts: 16
Thanks era and stanleypane. Its working fine.
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 10:25 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0