Run all scripts under in a directory
Answer:
Create the following bash script, and execute it
for FILE in /project/scripts/*.sh do if [-f $FILE -a -x $FILE] then $FILE fi done
Related posts:
Post a Comment