#!/bin/ash -x

echo Input from keyboard
read input
# Works
eval "echo $input"
# Doesn't work, shell escapes ;
test=`echo $input`
exit 0

