Sponsored Content
Top Forums Shell Programming and Scripting integer expression expected error Post 302247129 by dark_knight on Wednesday 15th of October 2008 03:48:15 AM
Old 10-15-2008
integer expression expected error

I'm a beginner so I might make beginner mistakes.
I want to count the "#define" directives in every .C file
I get the following errors:

./lab1.sh: line 5: ndef: command not found
./lab1.sh: line 6: [: ndef: integer expression expected


Code:
#!/bin/sh

for x in *.[Cc]
do
        ndef = 'grep -c \#define $x'
        if [ ndef -ge 1 ]; then
                echo $x has $ndef define directives
        fi
done

Can you give me a hint of what's wrong?
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

integer expression expected error crontab only

I created a bash script that ran fine for awhile on a nightly crontab but then started crashing with commands not found, so I added PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11:/home/homedir/scripts/myscriptdir export PATH and now I don't get those errors, but... (2 Replies)
Discussion started by: unclecameron
2 Replies

2. Shell Programming and Scripting

Display Error [: : integer expression expected

i have lunix 5.4 i make script to tack the export from database 11g by oracle user the oracle sheel is /bin/bash when run this script display this error ./daily_xport_prod: line 36: the daily_xport_prod script #! /bin/sh # ORACLE_HOME=/u01/appl/oracle/product/11.2.0/db_1 export... (8 Replies)
Discussion started by: m_salah
8 Replies

3. Shell Programming and Scripting

New to shellscripting error: ./emailnotifications.sh: line 43: [: FH: integer expression expected

Hi , I'm a beginner in unix shell scripting need help in rectifying an error Source file :test.txt with Header ------ ----- Trailer ex: FH201010250030170000000000000000 abc def jke abr ded etf FE2 I was validating whether the header begin... (2 Replies)
Discussion started by: dudd9
2 Replies

4. Shell Programming and Scripting

if script error: integer expression expected

Hi, i am making a simple program with a optional -t as the 3rd parameter. Submit course assignment -t dir In the script, i wrote: #!/bin/bash echo "this is course: ${1}" echo "this is assignment #: ${2}" echo "late? : ${3}" if then echo "this is late" fi but this gives me a :... (3 Replies)
Discussion started by: leonmerc
3 Replies

5. Shell Programming and Scripting

Integer expression expected: with regular expression

CA_RELEASE has a value of 6. I need to check if that this is a numeric value. if not error. source $CA_VERSION_DATA if * ] then echo "CA_RELESE $CA_RELEASE is invalid" exit -1 fi + source /etc/ncgl/ca_version_data ++ CA_PRODUCT_ID=samxts ++ CA_RELEASE=6 ++ CA_WEEK_NO=7 ++... (3 Replies)
Discussion started by: ketkee1985
3 Replies

6. Shell Programming and Scripting

Error: integer expression expected

root@server01 # df -h | grep /tmp | awk {'print $3}' 252M root@server01 # root@server01 # cat /usr/local/tmpchk.sh #!/bin/sh x=`df -h | grep /tmp | awk {'print $3}'` if ; then rm -fr /tmp/somefolder/ else echo "its small" (2 Replies)
Discussion started by: fed.linuxgossip
2 Replies

7. UNIX for Dummies Questions & Answers

Integer expression expected error in script

When i run the following code i get an error that says Integer expression expected! How do i fix this? #!/bin/bash if ;then echo "wrong" exit 1 fi if ;then for i in /dev;do if ;then echo $i ls -l fi (4 Replies)
Discussion started by: kotsos13
4 Replies

8. Shell Programming and Scripting

if condition error: integer expression expected

I am trying to run following condition with both variables having numeric values "1,2,3" if ;when i run it i get following error: $NEW_STATE: integer expression expected Please correct me where I'm doing wrong. I'm trying to check either New State is greater or Old state.... (0 Replies)
Discussion started by: kashif.live
0 Replies

9. Shell Programming and Scripting

Integer expression expected

Newb here echo "$yesterdaysclose" echo "$close" if ; then echo "stocks moving up" elif ; then echo "stock is moving down" else echo "no change" fi seems to evaluate the floating decimal correctly however returns ./shellscript1.sh: line 17: [: : integer expression expected... (3 Replies)
Discussion started by: harte
3 Replies

10. Shell Programming and Scripting

Getting error in bash script; expr $a + 1: integer expression expected

Hi, I am new to shell/bash script. I am trying to run below script #!/bin/bash a=0 b=10 if then echo "a is equal to be" else echo "a is not equal to be" fi MAX=10 while do echo $a a='expr $a + 1' done (1 Reply)
Discussion started by: Mallikgm
1 Replies
REZ(1)							      General Commands Manual							    REZ(1)

NAME
Rez - compiles resources SYNOPSIS
Rez [ rezFile1 ] [ rezFile2 ] ... [ -align word | longword ] [ -a[ppend] ] [ -arch architecture ] [ -c[reator] creatorExpr ] [ -d[efine] macro [ = data ] ] [ -i directoryPath ] [ -F frameworkDirectoryPath ] [ -is[ysroot] sdkPath ] [ [ -m[odification] ] [ -noResolve [ output | include ] ] [ -o outputFile ] [ -ov ] [ -p[rogress] ] [ -rd ] [ -ro ] [ -s directoryPath ] [ -script Roman | Japanese | Korean | SimpChinese | TradChinese ] [ -t[ype] typeExpr ] [ -u[ndef] macro ] [ -useDF ] DESCRIPTION
The Rez tool compiles the resource fork of a file according to the textual description contained in the resource description files. These resource description files must contain both the type declarations and the resource definitions needed to compile the resources. This data can come directly from the resource description files, as in this example: Rez -F Carbon Carbon.r myResource.r The data can also come from other text files that are included in resource description files using #include and read directives. For example, myResource.r could use #include to include the Carbon.r file. INPUT
Standard input, unless you specify one or more resource description files. OUTPUT
Normally Rez writes the resource fork to the file Rez.out. You can specify a different output file by using the -o option. Errors and warnings are written to diagnostic output. The Rez tool does not write to standard output. ALIAS RESOLUTION
This command resolves Finder aliases in all input and output file specifications. This includes input source files, listing files, output object files, paths specified with the -i and -s options, and paths specified within source code using INCLUDE or #include statements. This behavior may be changed for resource files by using the -noResolve option. STATUS
Rez can return the following status codes: 0 no errors 1 error in parameters 2 syntax error in resource description file 3 I/O or program error Note If any errors are detected, Rez sets the output file's modification date to 0, which is January 1, 1904, 12:00 A.M. PARAMETERS
rezFile1 [ rezFile2 ] ... Specifies one or more resource description files that contain type declarations and resource definitions. Typically this pairs a file containing only resource definitions with another containing only type declarations. The type declarations for the standard Macintosh resources are contained in the MacTypes.r file in the CarbonCore framework. You can also specify resource description files by using #include. For example, a file containing only resource definitions could include those containing the appropriate type declarations (for example, myResource.r could include <Carbon/MacTypes.r>). In addition, you can also include resource files that have already been compiled by Rez include directive. The -script option enables Rez to correctly process the 2- byte character sets for foreign-language script systems. OPTIONS
-align word | longword Aligns resources along word or longword boundaries. This allows the Resource Manager to load these resources faster. The Rez tool ignores this option if you use -a[ppend]. -a[ppend] Appends new resources to the output file rather than replacing the output file. Note The Rez tool cannot append resources to a resource file that has its read-only bit set. It also cannot replace a resource that has its protected bit set unless you specify -ov. WARNING The Rez tool overwrites any existing resource of the same type and ID without any warning message. -arch architecture A synonym for -d __architecture__ If no -arch arguments are provided, Rez automatically adds one for the current system's architecture. -c[reator] creatorExpr Sets the output file creator. (The default value is '????'.) Note that creatorExpr is a Rez expression such as -c "3*200+5" If the creator begins with a letter and does not contain any spaces or special characters, you can simply type it in, as in this example: -c APPL Otherwise, you must format the creator as a numeric expression or as a literal expression such as -c " '@@@@' " -d[efine] macro [= data ] Defines the macro variable macro as having the value data. You can use this option more than once on a command line. macro Specifies the macro variable to be defined. data Specifies the value of macro. This is the same as writing #define macro [data] at the beginning of the input. If you do not specify data, Rez sets the value of data to the null string. Note that this still defines the macro. -i directoryPath Directs Rez to search this directory for #include files. You can specify this option more than once. The Rez tool searches directories in the order in which they appear on the command line. -F frameworkDirectoryPath Directs Rez to search this directory for frameworks referred to by framework-style #include references (e.g. <Carbon/Carbon.r>.) By default, Rez only searches the /System/Library/Frameworks directory; using this option you can specify other directories to be searched. You can specify this option more than once. The Rez tool searches directories in the order in which they appear on the command line. -is[ysroot] sdkPath Directs Rez to search for included files and frameworks in the designated SDK. If omitted, the system root ("/") is assumed. -m[odification] Does not change the output file's modification date. If an error occurs, the output file's modification date is set to zero, even if you use this option. A date of 0 means January 1, 1904, 12:00 A.M. -noResolve [output|include] Overrides the default alias resolution behavior by not resolving leaf aliases in the output resource file specification or in any included resource input files. output If output is specified, Rez overrides the default Finder alias resolution behavior by not resolving leaf aliases in the output resource file specification. This allows you to modify a Finder alias file directly. include If include is specified with -noResolve then Rez overrides the default Finder alias resolution behavior by not resolving leaf aliases in any included resource input files. This allows you to include resources directly from Finder alias files. -o outputFile Places output in the specified output file. The default output file is Rez.out. -ov Overrides the protected bit when replacing resources with -a[ppend]. -p[rogress] Writes version and progress information to diagnostic output. -rd Suppresses warning messages for redeclared resource types. -ro Sets the mapReadOnly flag in the resource map. -s directoryPath Directs Rez to search this directory for resource include files. You can specify this option more than once. The Rez tool searches directories in the order in which they appear on the command line. -script Roman | Japanese | Korean | SimpChinese | TradChinese Enables the recognition of any of several 2-byte character script systems to use when compiling and decompiling files. This option insures that 2-byte characters in strings are handled as indivisible entities. The default language is Roman and specifies 1-byte character sets. -t[ype] typeExpr Sets the type of the output file (the default is 'APPL'). Note that typeExpr is a Rez expression, such as -t "3*200+5" If the type begins with a letter and does not contain any spaces or special characters, you can simply type it in, as in this example: -t MPST Otherwise, you must format it as a numeric expression or literal expression, such as -t " '@@@@' " -u[ndef] macro Undefines the preset macro variable This is the same as writing #undef macro at the beginning of the input. This option can be repeated more than once on a command line. -useDF Reads and writes resource information from the files' data forks, instead of their resource forks. EXAMPLES
The following command line generates a resource fork for the file Sample, based on the type declarations and resource definitions in Types.r and Sample.r: Rez Types.r Sample.r -o Sample SEE ALSO
DeRez Mac OS X July 25, 2000 REZ(1)
All times are GMT -4. The time now is 11:51 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy