Execution of two GRC files Automatically after 10 second

Hi

Is there any way to execute two GRC files automatically after 10
seconds(or under some given condition)?

Waiting for response

Zimran Rafique

#!/bin/bash
sleep 10
./grc_file1.py &
./grc_file2.py &
echo “flow graphs running, exit script!”

-Josh