Skip to content

Instantly share code, notes, and snippets.

@KONFeature
Created October 7, 2022 14:35
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Run all the scripts with nohup
#!/bin/bash
# Assert we are on the root folder
if [ ! -d "contracts" ]; then
echo "error: script needs to be run from project root './tools/run-all-nohup.sh'"
exit 1
fi
# Exec the run all script with nohup
nohup sh tools/run-all.sh > tools/logs/security-analysis.log 2>&1 &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment