選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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