Sponsored Content
Top Forums UNIX for Dummies Questions & Answers awk unable to compare the shell variable Post 302611685 by curleb on Friday 23rd of March 2012 09:30:17 AM
Old 03-23-2012
is $SVRNAME actually defined? What output ARE you getting?
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

AWK - compare $0 to regular expression + variable

Hi, I have this script: awk -v va=45 '$0~va{print}' flo2 That returns: "4526745 1234 " (this is the only line of the file "flo2". However, I would like to get "va" to match the begining of the line, so that is "va" is different than 45 (eg. 67, 12 ...) I would not have any output. That... (3 Replies)
Discussion started by: jolecanard
3 Replies

2. Shell Programming and Scripting

Unable to assign value to variable using awk coz of whitespace in value

Unix gurus, I have a file as below, which is basically the result set obtained from a sql query on an Oracle database. ID PROG_NAME USER_PROG_NAME -------- --------------- ---------------------------------------- 33045 INCOIN Import Items 42690 ... (3 Replies)
Discussion started by: sunpraveen
3 Replies

3. Shell Programming and Scripting

AWK help. how to compare a variable with a data array in AWK?

Hi all, i have a data array as follows. array=ertfgj2345 array=456ttygkd . . . array=errdjt3235 so number or elements in the array can varies depending on how big the data input is. now i have a variable, and it is $1 (there are $2, $3 and so on, i am only interested in $1). ... (9 Replies)
Discussion started by: usustarr
9 Replies

4. Shell Programming and Scripting

AWK help: how to compare array elements against a variable

i have an array call ignore. it is set up ignore=34th56 ignore=re45ty ignore=rt45yu . . ignore=rthg34 n is a variable. I have another variable that i read from a different file. It is $2 and it is working the way i expect. array ignore read and print correct values. in the below if... (2 Replies)
Discussion started by: usustarr
2 Replies

5. Shell Programming and Scripting

awk conditional expression to compare field number and variable value

Hi, I'm trying to compare the value in a field to the value in a variable using awk. This works: awk '$7 == "101"'but this is what I want (and it doesn't work): value=101 awk '$7 == "$value"' Any help or insight on this would be great. Thanks in advance. (1 Reply)
Discussion started by: goodbenito
1 Replies

6. Shell Programming and Scripting

awk arrays - compare value in second column to variable

Hello, I am trying to redirect files to a directory by using a config file. The config files is as such: xxxxxx,ID,PathToDirectory xxxxxx,ID2,PathToDirectory2 and so on... I have a variable that should match one of these IDs. I want to load this config file into an awk array, and... (2 Replies)
Discussion started by: jrfiol
2 Replies

7. HP-UX

Unable to pass a space inside a variable shell scripting

Can anyone help me in solving this ? p=`date` e=`echo $p | awk '{print $2,$3}'` # echo $p Wed Aug 4 12:00:08 IST 2013 but when I am echoing the value of e it is giving me with one space. As shown below: # echo $e Aug 4 I need this value to be exact as found in... (6 Replies)
Discussion started by: Kits
6 Replies

8. Shell Programming and Scripting

Unable to pass shell script variable to awk command in same shell script

I have a shell script (.sh) and I want to pass a parameter value to the awk command but I am getting exception, please assist. diff=$1$2.diff id=$2 new=new_$diff echo "My id is $1" echo "I want to sync for user account $id" ##awk command I am using is as below cat $diff | awk... (2 Replies)
Discussion started by: Ashunayak
2 Replies

9. Shell Programming and Scripting

Unable to compare to a previous value of a variable in a while loop for a file

Hello All, I'm working on a script that will actually read a file consisting of data like the below:(ReportID,Sub_reportID,Sub_reportName) 1,1,ABC 1,2,DEF 1,3,GHI 2,1,JKL 2,2,MNO 3,1,PQR I want to read the Sub Report details for a Report_ID using while loop and write these values into... (6 Replies)
Discussion started by: venkat_reddy
6 Replies

10. Shell Programming and Scripting

awk to compare each file in two directores by storing in variable

In the below bash I am trying to read each file from a specific directory into a variable REF or VAL. Then use those variables in an awk to compare each matching file from REF and VAL. The filenames in the REF are different then in the VAL, but have a common id up until the _ I know the awk portion... (15 Replies)
Discussion started by: cmccabe
15 Replies
stdio.h(3HEAD)							      Headers							    stdio.h(3HEAD)

NAME
stdio.h, stdio - standard buffered input/output SYNOPSIS
#include <stdio.h> DESCRIPTION
The <stdio.h> header defines the following macros as positive integer constant expressions: BUFSIZ size of <stdio.h> buffers _IOFBF input/output fully buffered _IOLBF input/output line buffered _IONBF input/output unbuffered L_ctermid maximum size of character array to hold ctermid() output L_tmpnam maximum size of character array to hold tmpnam() output SEEK_CUR seek relative to current position SEEK_END seek relative to end-of-file SEEK_SET seek relative to start-of-file The following macros are defined as positive integer constant expressions that denote implementation limits: {FILENAME_MAX} Maximum size in bytes of the longest filename string that the implementation guarantees can be opened. {FOPEN_MAX} Number of streams that the implementation guarantees can be open simultaneously. The value is at least eight. {TMP_MAX} Minimum number of unique filenames generated by tmpnam(). Maximum number of times an application can call tmpnam() reli- ably. The value of {TMP_MAX} is at least 25. On XSI-conformant systems, the value of {TMP_MAX} is at least 10000. The following macro name is defined as a negative integer constant expression: EOF end-of-file return value The following macro name is defined as a null pointer constant: NULL null pointer The following macro name is defined as a string constant: P_tmpdir default directory prefix for tempnam() The following is defined as expressions of type "pointer to FILE" point to the FILE objects associated, respectively, with the standard error, input, and output streams: stderr standard error output stream stdin standard input stream stdout standard output stream The following data types are defined through typedef: FILE structure containing information about a file fpos_t non-array type containing all information needed to specify uniquely every position within a file va_list as described in <stdarg.h> size_t as described in <stddef.h> ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ SEE ALSO
rename(2), ctermid(3C), fclose(3C), fdopen(3C), fflush(3C), fgetc(3C), fgetpos(3C), fgets(3C), flockfile(3C), fopen(3C), fputc(3C), fputs(3C), fputwc(3C), fread(3C), freopen(3C), fseek(3C), fsetpos(3C), ftell(3C), fwrite(3C), getwchar(3C), getopt(3C), perror(3C), popen(3C), printf(3C), remove(3C), rewind(3C), scanf(3C), setbuf(3C), stdio(3C), system(3C), tmpfile(3C), tmpnam(3C), ungetc(3C), vprintf(3C), attributes(5), standards(5) SunOS 5.11 10 Sep 2004 stdio.h(3HEAD)
All times are GMT -4. The time now is 06:20 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy