Sponsored Content
Top Forums Shell Programming and Scripting AWK - Ignoring White Space with FS Post 302598754 by jim mcnamara on Wednesday 15th of February 2012 10:39:14 AM
Old 02-15-2012
Are you on Solaris -try nawk with Bartus' answer.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

wc of characters in a file ignoring white space

Hi everyone, $ more abcdefg.ksh abcdef alpha beta gamma abcdef abcdef lmnop $ wc sachin1.ksh 5 7 132 abcdefg.ksh if you see it shows that file has got 240 characters. I actually want to count how many characters... (1 Reply)
Discussion started by: sachin.gangadha
1 Replies

2. UNIX for Dummies Questions & Answers

SED with White Space

Dear Members, Suppose i have a variable test which stores a string as below: test='John drives+++++++++a+++++car' now i want to use sed on the above variable and replace + with a white space, so that i get echo $test should give me 'john drives a car' Between... (1 Reply)
Discussion started by: sandeep_1105
1 Replies

3. Shell Programming and Scripting

sed + white space

Hi, What sed command (if sed is the right command) can remove ALL white space from my file. I have a csv, except I want to remove all white space between commas and characters. My idea (without testing) sed 's/ //g' Is there a better way? (18 Replies)
Discussion started by: mcclunyboy
18 Replies

4. Shell Programming and Scripting

awk: Eliminating white space while setting variable

Hi, I have a large flat file from host without delimiter. I'm transforming this file to a csv file using statements like # Row 03: Customer / field position 3059 +20 WOFABNAM=substr( $0, 3059, 20 ); and deleting the trailing whitespaces before and after with that sub( /^ +/, "",... (4 Replies)
Discussion started by: Celald
4 Replies

5. Post Here to Contact Site Administrators and Moderators

Want a tcl script to compare a string in a file ignoring white spaces

Hi , I want a tcl script to search a string ignoring whitespaces in a .log file . It should correctly match . The string are as follows "Output-Maps 1 1 0 0 0" 1 and Active Intermediate-Maps 0 0 0 ... (1 Reply)
Discussion started by: kulua
1 Replies

6. UNIX for Advanced & Expert Users

Tcl script for seaching a string ignoring white spaces

Hi , I want to search a string in a file ignoring white spaces in TCL. My string is as follows Ouput-Maps " 1 1 1 0 " 1i am doing following set a *1*1*1*0* " }1 abc.log}] but it is not working. What is the wrong with the tcl script Thanks Gouranga Video... (0 Replies)
Discussion started by: mybapa3000@gmai
0 Replies

7. Shell Programming and Scripting

concatenate is ignoring space

Hi All,I am facing the below problem I have set a variable: a=`cat a.txt| grep "mad" | cut -c 30-50`the output is coming echo $a1 10 Mad300 3215however the actual ouput is 1.10 Mad300 3215There are 4spaces between 300 and 3215 so if i do: echo "$a" I am getting correct output: 1.10... (3 Replies)
Discussion started by: mad_man12
3 Replies

8. Shell Programming and Scripting

Undesired removal of white space with awk

Hi, I'm fairly new to scripting and I have a problem that I am having difficulty solving. What I'd like to do is run an awk script to adjust the string in the first field depending on the string in another field. This is best explained with an example: Here is my script: cat... (4 Replies)
Discussion started by: calbrex
4 Replies

9. Shell Programming and Scripting

awk - trim white space from a field / variable

Hi, Consider the data (FS = |): 1| England |end 2| New Zealand |end 3|Australia|end 4| Some Made Up Country |end 5| West Indies|end I want the output to be (i.e. without the leading and trailing white space from $2) England New Zealand Australia Some Made Up Country West... (4 Replies)
Discussion started by: Storms
4 Replies

10. Shell Programming and Scripting

Removing white space in awk

Hi How to remove white space from this input:|blue | 1| |green| 4| |black| 2| I like to search for green and get 4not 4 How to modify this to work correct:awk -F"|" '/green/ {print $3} (7 Replies)
Discussion started by: Jotne
7 Replies
eXosip2 SUBSCRIBE and incoming subscriptions(3) 		    libeXosip2			   eXosip2 SUBSCRIBE and incoming subscriptions(3)

NAME
eXosip2 SUBSCRIBE and incoming subscriptions - Functions int eXosip_insubscription_build_answer (int tid, int status, osip_message_t **answer) int eXosip_insubscription_send_answer (int tid, int status, osip_message_t *answer) int eXosip_insubscription_build_request (int did, const char *method, osip_message_t **request) int eXosip_insubscription_build_notify (int did, int subscription_status, int subscription_reason, osip_message_t **request) int eXosip_insubscription_send_request (int did, osip_message_t *request) int eXosip_insubscription_remove (int did) Detailed Description Function Documentation int eXosip_insubscription_build_answer (inttid, intstatus, osip_message_t **answer) Build answer for an SUBSCRIBE request. Parameters: tid id of SUBSCRIBE transaction. status status for SIP answer to build. answer The SIP answer to build. int eXosip_insubscription_send_answer (inttid, intstatus, osip_message_t *answer) Send answer for an SUBSCRIBE request. Parameters: tid id of SUBSCRIBE transaction. status status for SIP answer to send. answer The SIP answer to send. (default will be sent if NULL) int eXosip_insubscription_build_request (intdid, const char *method, osip_message_t **request) Build a request within subscription. Parameters: did id of incoming subscription. method request method to build. request The SIP request to build. int eXosip_insubscription_build_notify (intdid, intsubscription_status, intsubscription_reason, osip_message_t **request) Build a NOTIFY request within subscription. Parameters: did id of incoming subscription. subscription_status subscription status (pending, active, terminated) subscription_reason subscription reason request The SIP request to build. int eXosip_insubscription_send_request (intdid, osip_message_t *request) Send a request within subscription. Parameters: did id of incoming subscription. request The SIP request to send. int eXosip_insubscription_remove (intdid) Remove incoming subscription context. Parameters: did identifier of the subscription. Author Generated automatically by Doxygen for libeXosip2 from the source code. Version 3.1.0 Sun Jun 24 2012 eXosip2 SUBSCRIBE and incoming subscriptions(3)
All times are GMT -4. The time now is 12:08 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy