ulimit.sh 53 B

12345678
  1. #!/bin/bash
  2. ulimit -t $1
  3. ulimit -v $2
  4. shift 2
  5. "$@"