This is a slowly growing collection of hopefully useful and reusable shell functions and patterns. https://code.jan.io/jan/jans_shell_utils
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

trap_exit_example.sh 233B

vor 3 Jahren
123456
  1. # if you run a script that launches other processes, and you want to make sure those processes exit when your script exists, this helps:
  2. #
  3. # Copyright (c) 2022 Jan Lehnardt <jan@apache.org>, MIT licensed
  4. trap 'kill $(jobs -p)' EXIT