7 lines
207 B
Bash
Executable File
7 lines
207 B
Bash
Executable File
#!/bin/bash
|
|
# Cariflex Simulator Launcher
|
|
export FM_PASS="Digitribe972"
|
|
cd /home/eric/cariflex
|
|
nohup python3 -u scripts/cariflex_simulator.py > /tmp/simulator.log 2>&1 &
|
|
echo "Simulator started with PID $!"
|