File size: 155 Bytes
17c779c
 
 
c52a6aa
17c779c
 
c52a6aa
 
 
1
2
3
4
5
6
7
8
9
#!/bin/bash

# Start the first process
python entry_point.py > log1.log &

# Start the second process
python health_check.py > log2.log &

tail -f log1.log