7 lines
53 B
Bash
7 lines
53 B
Bash
#!/bin/bash
|
|
|
|
ulimit -t $1
|
|
ulimit -v $2
|
|
shift 2
|
|
"$@"
|
|
|