Linux - General This Linux forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
07-02-2004, 05:56 AM
|
#1
|
Member
Registered: May 2003
Posts: 77
Rep:
|
Do not stop or exit from a script in case of error.
Hello,
I would like to execute a linux script including some mysql commands.
My problem is that my script is exiting in case of error.
Is there any possibility to automatically ignore in case of error and continue to execute all other mysql commands.
Thanks in advance.
Alain.
|
|
|
07-02-2004, 06:10 AM
|
#2
|
Member
Registered: Apr 2003
Location: denver co
Distribution: redhat9
Posts: 156
Rep:
|
so when the program script in bash? right? is going though it exits because? well the only reason a script would exit is ctl c, return 1, or it is finished. can you give some more info pls.
thank you
wolfe
|
|
|
07-02-2004, 06:30 AM
|
#3
|
Member
Registered: May 2003
Posts: 77
Original Poster
Rep:
|
Yes, this is a bash file.
Example:
!#/bin/bash
exec mysql -e"INSERT INTO MyTable1 VALUES(1,2,3,4,5);"
exec mysql -e"INSERT INTO MyTable2 VALUES(1,2,3,4,5);"
exec mysql -e"INSERT INTO MyTable3 VALUES(1,2,3,4,5);"
If there is a problem in the first mysql command, all other mysql commands are not executed.
Thanks in advance.
|
|
|
07-02-2004, 06:33 AM
|
#4
|
Member
Registered: Feb 2004
Posts: 273
Rep:
|
Quote:
Originally posted by philipina
Yes, this is a bash file.
Example:
!#/bin/bash
exec mysql -e"INSERT INTO MyTable1 VALUES(1,2,3,4,5);"
exec mysql -e"INSERT INTO MyTable2 VALUES(1,2,3,4,5);"
exec mysql -e"INSERT INTO MyTable3 VALUES(1,2,3,4,5);"
If there is a problem in the first mysql command, all other mysql commands are not executed.
Thanks in advance.
|
remove the "exec". Exec causes the process to execute in the same shell.
!#/bin/bash
mysql -e"INSERT INTO MyTable1 VALUES(1,2,3,4,5);"
mysql -e"INSERT INTO MyTable2 VALUES(1,2,3,4,5);"
mysql -e"INSERT INTO MyTable3 VALUES(1,2,3,4,5);"
|
|
|
07-02-2004, 06:52 AM
|
#5
|
Member
Registered: May 2003
Posts: 77
Original Poster
Rep:
|
Yes, now it works fine!
Thanks you.
Alain.
|
|
|
All times are GMT -5. The time now is 12:19 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|