#!/bin/sh

trap 'echo "Ignoring SIGINT..."' INT

while [ true ]
do
  yes >/dev/null
done
