• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2# Limit the amount of time and the core size for the compiler.
3set -e
4
5ulimit -t 5 -c 0
6
7c++ $@
8