Clear it in 3 steps
-
Start the environment
-
Investigate the target
-
Submit the flag
Among several background processes, one has the flag embedded in its command-line arguments. List them with ps and find it.
ps aux or ps -ef shows every process along with its launch arguments
Combine with grep to filter: ps aux | grep FLAG
Pay attention to the full command line, not just the process name