#!/bin/bash
trap - SIGINT
def_args="$1"

trap 'exit 1' SIGINT
read -r -e -i "${def_args}" -p "> " input 
echo "${input}"
exit 0
