79675285

Date: 2025-06-22 16:44:09
Score: 1
Natty:
Report link

On the GitLab feature request mentioned by @Jonathan, kawadumax posted a nice solution leveraging Just's ability to have embedded Bash that is essentially:

#!/bin/bash -eu
command1 &
command2 &
trap 'kill $(jobs -pr)' EXIT
wait
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mark C