Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

8 rader
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 "$@"