I have a script located at /tmp/”My Batch Script Files”/Processing
How would I run this from the home directory /tmp/ in another script
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
If it is executable:
If it is not exectuable, either make it executable or:
You can place the double quotes around the whole path name as I did, or around the component containing the spaces, or almost any other location you choose in between. With just two double quotes, this as close together as you can place them:
or use backslashes if you prefer (I don’t recommend them, though):
On the whole, though, I’d go with the first suggestion, or use:
This is particularly attractive if you generate the file name while the outer script is running.