Ph0enixKM / Amber

💎 Amber the programming language compiled to bash
https://amber-lang.com
GNU General Public License v3.0
3.53k stars 70 forks source link

✨ Spawning and terminating processes #172

Open FedericoCeratto opened 2 weeks ago

FedericoCeratto commented 2 weeks ago

One of the features that keeps me in bash land is the quick (and dirty) process management for development, e.g.:

./my_service &
sleep 1
run_local_tests_against_my_service
killall my_service

Having simple unobtrusive process management in Amber would be very nice!

Ph0enixKM commented 2 weeks ago

@FedericoCeratto that’d be totally on the list to do. Great feature request!