#!/bin/bash

ULIMIT_CHECK=$(~/bin/get_ulimit)
if [ "${ULIMIT_CHECK}" -le "4" ]; then
  echo 0
else
  ~/bin/set_ulimit
  echo 1
fi
