No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

hace 2 meses
1234567891011121314
  1. #!/usr/bin/env bash
  2. # Run the command in the arguments and turn any non-0 exit code
  3. # into a 255 exit code. This is useful when using xargs because
  4. # xargs stops itself only on exit code 255 from the subprocess,
  5. # and not any other exit code.
  6. #
  7. # Remember to add "255wrap" before the subprocess, not the "xargs"!
  8. "$@"
  9. if [[ $? -ne 0 ]]; then
  10. exit 255
  11. fi