#!/bin/bash

trap "" SIGINT SIGTERM
echo "pid on $$"

while :		
do
  clear
  echo 'kiellän painamasta CTRL-c'
done

