This is a slowly growing collection of hopefully useful and reusable shell functions and patterns. https://code.jan.io/jan/jans_shell_utils
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

3 wiersze
165B

  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. trap 'kill $(jobs -p)' EXIT