15 lines
355 B
Plaintext
Raw Normal View History

2023-03-28 08:48:09 +00:00
#!/bin/bash
echo "This is a test! Here is what the log would look like"
echo " \
{
\"return_code\": 0,
\"artifacts\": {
\"stdout_path\": \"$1/solver_stdout.log\",
\"stderr_path\": \"$1/solver_stderr.log\"
}
}
" > $1/solver_out.json
echo "This is the stdout log" >> $1/solver_stdout.log
echo "This is the stderr log" >> $1/solver_stderr.log