./zzmaster.sh: line 2: syntax error: unexpected end of file
There are 4 scripts total involved. The first 'znocc0.sh' essentially curls a page then does some sed sequences...
The zrmtd0 and zrmtd0o scripts just chop up table data to trim out some of the uncessary baggage. They are both the same just cutting out different table datas.
BUT HERE IS WHERE MY PROBLEM LIES.. I create a file called zzmaster.sh with this line..
and it breaks with the error
Why? Eventually I'd like to reference several of these and just run a cron on that one file while sleeping once or twice in between...
sh /home/jim/www/htdocs/curl/replicate/znocc0.sh &&
sh /home/jim/www/htdocs/curl/replicate/znocc1.sh &&
sleep 20
sh /home/jim/www/htdocs/curl/replicate/znocc0.sh &&
sh /home/jim/www/htdocs/curl/replicate/znocc1.sh &&
sleep 20
sh /home/jim/www/htdocs/curl/replicate/znocc0.sh &&
sh /home/jim/www/htdocs/curl/replicate/znocc1.sh &&
At first I started the script with #!/bin/sh. It complained so I took it out. So now it just complains of the last line. Now aside from the current error, since the script -technically, when I go to configure the cron it breaks... Here's the complaint cron gives me..
And here's the cron..
When I run the command directly as root, it doesn't complain at all. In fact, the first error doesn't come up.
BUT HERE IS WHERE MY PROBLEM LIES.. I create a file called zzmaster.sh with this line..
and it breaks with the error
Why?
You have an incomplete command.
The control operator && expects another command to follow it, to be executed if the first command completes successfully, e.g.:
The command after the || operator is executed if a previous command failed.
Quote:
Eventually I'd like to reference several of these and just run a cron on that one file while sleeping once or twice in between...
sh /home/jim/www/htdocs/curl/replicate/znocc0.sh &&
sh /home/jim/www/htdocs/curl/replicate/znocc1.sh &&
sleep 20
sh /home/jim/www/htdocs/curl/replicate/znocc0.sh &&
sh /home/jim/www/htdocs/curl/replicate/znocc1.sh &&
sleep 20
sh /home/jim/www/htdocs/curl/replicate/znocc0.sh &&
sh /home/jim/www/htdocs/curl/replicate/znocc1.sh &&
&& does not put jobs into the background. The keyword to do that is &.
Hi,
I am brand new to this so I apologize ahead of time for any formatting problems.
I know there is a previous (closed) thread on here about this problem but I wasn't able to fix the error following the posts there so I thought I could create a new one.
Here is the error I am getting:
... (3 Replies)
I checked the forum and internet, tried different workaorunds but it didnt fixed the error.
Please advise on the code.
#!/bin/sh
CWD=/home/test/Bench
cd $CWD
(grep "`date +%d-%b"`" File.txt) > /home/test/Bench/dateout
if
then
echo “data” > /home/test/ Bench /test
else
echo "File... (16 Replies)
Hi,
I am getting error while running the script. "syntax error: unexpected end of file"
if i do cat i cant see the content of the script also it is showing as
cat test.sh
doner /home/master/* /home/Priya/$i| while read i j
The original script is
paste /home/names.txt /home/ip.txt |... (6 Replies)
I am new to unix, so thank u for ur patience
I try to make it work (to duplicate two first columns in several files):
#!/bin/bash
for i in `seq 2 5`
do
awk `{ print $1,$1,$2,$2,$3,$4}` final_chr.${i} > input_${i}
done
and i get
./my_script3.sh: command substitution: line 5: syntax... (2 Replies)
Hi all,
I am very new to programming and even newer to this forum as well, so I apologize if this should have been in the Newbie category, but...
I am currently trying to figure out Shell Scripting and am running into problems early. Not having taken any kind of programming class, I am not even... (2 Replies)
I will appreciate help is this matter. i am getting this error (./getwind.scr: line 41: syntax error: unexpected end of file) in the following script :
##############################
#QSUB -eo -q sb -lT 1200 -s /bin/csh
#Run on an HP-UX machine or norway to access ncks
# lat and lon are in... (0 Replies)
Hi,
I am newbie to UNIX scripting. I am facing this error "syntax error: unexpected end of file" while executing the following script:
------
a=$1
if
then
sqlplus -s prospect_stg/prospect_stg@mdmpt <<END
insert into bckup_marc_parameter_lookup select * from... (6 Replies)
Hi,
I have problem in constructing "IF" condition.
The below code throws "tst.sh: line 10: syntax error: unexpected end of file"
#!/bin/ksh
test=9
echo $test
if ]
then
echo "in"
fi
echo "end"
exit 0
Actually, i want to check whether the variable $test is empty or null.
... (5 Replies)
Hi,
I need ur help is this matter, i have th ebelow script, and i keep getting this error: syntax error: unexpected end of file
affectedRow=`cat dbOutput.log | grep "1 row affected"`
echo "affectedRow : $affectedRow"
if ; then
echo "Look to the next OMCDB"
... (10 Replies)