#!/bin/bash
PROC_NAME="${1:-killable_process}"
ln -sf "$(command -v sleep)" "/tmp/$PROC_NAME"
exec "/tmp/$PROC_NAME" infinity
