25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

8 satır
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 "$@"