Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

8 righe
281 B

  1. #!/bin/bash
  2. # Usage: nicegrep NICE MAXMEMORY ARG...
  3. # Executes grep with the provided arguments using `nice -n NICE` and `ulimit -v MAXMEMORY`
  4. nice="$1"; shift
  5. maxMemory="$1"; shift
  6. if [[ "${maxMemory}" != '0' ]]; then ulimit -v "${maxMemory}"; fi
  7. exec nice -n "${nice}" grep "$@"