Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9195879
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T21:43:35+00:00 2026-06-17T21:43:35+00:00

I have the following shell script which writes volumes in a find command to

  • 0

I have the following shell script which writes volumes in a find command to a file, and loads that file into a mysql database:

# find all the paths and print them to a file
sudo find $FULFILLMENT/ > $FILE
sudo find $ARCH1/ >> $FILE
sudo find $ARCH2/ >> $FILE
sudo find $MASTERING/ >> $FILE

# load the file into the mysql database, `files`, table `path`
/usr/local/bin/mysql -u root files -e "TRUNCATE path"
/usr/local/bin/mysql -u root files -e "LOAD DATA INFILE '/tmp/files.txt' INTO TABLE path"

TRUNCATE is to be used to delete all the old entries before adding the new. However, if any of the find commands don’t work (for example, if the volume isn’t accessible), I want it to skip on the two mysql commands. How would I modify the above script to do this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T21:43:36+00:00Added an answer on June 17, 2026 at 9:43 pm

    This will execute your two mysql commands only if all the find commands succeed:

    # find all the paths and print them to a file
    sudo find $FULFILLMENT/ > $FILE &&
    sudo find $ARCH1/ >> $FILE &&
    sudo find $ARCH2/ >> $FILE &&
    sudo find $MASTERING/ >> $FILE &&
    {
      # load the file into the mysql database, `files`, table `path`
      /usr/local/bin/mysql -u root files -e "TRUNCATE path"
      /usr/local/bin/mysql -u root files -e "LOAD DATA INFILE '/tmp/files.txt' INTO TABLE path"
    }
    

    The && operator causes the command on the RHS to run only if the command on the LHS succeeds. The { ... } groups the two mysql commands into one compound command, so either both run (if the last find succeeds) or neither does (if the last find does not succeed).

    You can use this if there is more to your script that should run whether or not the finds succeed and the mysql commands run.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a shell script file (run.sh) that contains the following: #!/bin/bash %JAVA_HOME%/bin/java -jar
I have this shell script which executes the following command: #!/bin/sh echo -e {\username\:\user\,\password\:\mypasswd\,\data\
I have a shell script which contains the following: case $1 in 0 )
I have made a power shell script which loads pageant (a windows SSH authentication
Utility: NMake Platform : Windows 7 I have the following Makefile FILE = $(shell)
I have following script that executes all the .reg files in the current directory.
I have some CSV data files that I want to import into mySQL. I
I have a shell script which exports several org files to latex; an example
Following shell script for storing back up of laste 10 database. but there is
I bumped into the following problem: I'm writing a Linux bash script which does

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.