#!/bin/bash

if [ -n "$1" ]; then
    if [ $1 == "-s" ]; then
        while :
        do
            sleep 5
        done
    fi
fi

sleep 1

exit 0