Is it possible to have the output of a bash program returned to the command-line interface so that by pressing Enter the output is executed as a command?
I mean something like:
>> cat example.sh
special_echo "ls -l"
>> ./example.sh
>> ls -l
Where special_echo replaces the function I am looking for.