Too many arguments error


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Too many arguments error
# 1  
Old 01-20-2017
Tools Too many arguments error

Here's my code.

Code:
     21 if [ -f addr*.tmp ]; then
     22
     23 ls addr*.tmp | while IFS= read -r entry; do           # Starts Reading .cfg files one by one ...
     24 echo $entry

I get the below error at line number 21

Code:
line 21: [: too many arguments

Can you tell me how can i alter my code to avoid the error ?
# 2  
Old 01-20-2017
Maybe like this:

Code:
set addr*.tmp
if [ -f "$1" ]; then 
   echo "got at least one addr*.tmp file"
fi

Or better...

Code:
for tmpfile addr*.tmp ; do
   if [ -f "$tmpfile" ]; then 
   echo "got at least one addr*.tmp file"
   fi
   break
done

if there is no file matching the pattern, the pattern stays as written and when tested, no file exists with that pattern.
This User Gave Thanks to stomp For This Post:
# 3  
Old 01-20-2017
-f only accepts one argument, when there's two or more matching files that causes a syntax error.

The code above can work but beware that set will change your commandline parameters (unless done inside a function).
This User Gave Thanks to Corona688 For This Post:
# 4  
Old 01-20-2017
A BIG thank you and resolved
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Error as too many arguments

kindly some one pls let me know what is the prb with the code. tired of debugging. psl let me know the details on resolution #!/bin/bash echo enter name read name if || ] ; then echo $name else echo none fi (4 Replies)
Discussion started by: anandpasunoori
4 Replies

2. UNIX for Dummies Questions & Answers

Too Many Arguments Error - shells script

Hi, I am getting the below error : error at the if condition start and when I print the value of TEST, it displays two values as below /home/xyz/out/file1.txt /home/xyz/out/file2.txt if ; then mv $TEST $TARGETDIR/ fi Tried by enclosing it in double quotes "$TEST",... (4 Replies)
Discussion started by: sudhagk
4 Replies

3. Shell Programming and Scripting

Passing arguments--Error

Hi, i have a file.txt with data Bangalore Chennai Hyd filename of the script is: new.sh result=`cat file.txt | grep $1` if then echo pass else echo fail fi i am executing the file in the cmd line as "sh new.sh Bangalore" o/p is pass if i give "sh new.sh delhi" o/p is... (6 Replies)
Discussion started by: harsha85
6 Replies

4. Shell Programming and Scripting

Bash too many arguments error

Hello, I've got this little script that gets a bunch of comics and puts them in an html file. However, when I check that the comic URL is there and that it's a new one, I get the "too many arguments" error. The script is this: CADURL=`curl --silent http://www.cad-comic.com/cad/ | grep -o... (10 Replies)
Discussion started by: killer54291
10 Replies

5. Shell Programming and Scripting

Too many arguments error

I need help. I have created my script for a simple calculator but my multiplication operator does not work. This is the the code: #!/bin/bash echo "Enter number1" read Number1 echo"Enter number2" read Number2 echo"Operator is *" read opr if then expr $Number1 \*... (1 Reply)
Discussion started by: Pauline mugisha
1 Replies

6. Programming

Error: too many arguments to function 'sigwait'

#include <pthread.h> #include <signal.h> ... sigset_t mask; int err,signo; err=sigwait(&mask,&signo); switch(signo){ case SIGINT: ... } when I compile above code under solaris 10,it raise following error: error: too many arguments to function 'sigwait' I look up signal... (4 Replies)
Discussion started by: konvalo
4 Replies

7. Shell Programming and Scripting

Getting error in command line arguments

Hi, When i am running the following script 1.sh (without giving the command line arguments) then i am getting the following error. if then echo "UID and PWD are correct" elif then echo "Either UID or PWD is wrong. Please check your UID and PWD" else echo "UID and PWD can't be blank"... (9 Replies)
Discussion started by: sunitachoudhury
9 Replies

8. UNIX for Dummies Questions & Answers

How to fix :[too many arguments error in code

I am getting a :; then echo "Enter zero or one file" echo "You must use a valid directory" echo "Current directory is:" pwd exit 0 fi #Flag Variable flag=1 #Code for no arguments if ; then for filename in * do if ; then ... (2 Replies)
Discussion started by: Brewer27
2 Replies

9. Shell Programming and Scripting

arguments too long error

Hi, I am running a .csh shell and get this error. set dir=/u21/oradata/SDE/cass echo /u21/oradata/SDE/cass /u21/oradata/SDE/cass set compression=jpeg set bustab=CASS_ORTHO2005 set keyword=cnty_2005 set resampling=bilinear set image_list=/u21/oradata/SDE/cass/*.tif Arguments too long.... (0 Replies)
Discussion started by: kburrows
0 Replies

10. Shell Programming and Scripting

arguments expected error

ive implemented getopt for the command line but have this problem, #!/bin/sh text="" set -- getopt "t" etc .... #sets arguments while : do case "$1" in #gets arguments -t: shift; text="$1" ;; shift done shift if then echo "no text" else echo... (4 Replies)
Discussion started by: strike
4 Replies
Login or Register to Ask a Question