#!/bin/bash trap "rm -f $HOME/execpipe" EXIT trap "rm -f $HOME/execpipe" ERR mkfifo $HOME/execpipe while true; do eval "$(cat $HOME/execpipe)"; done