I need to concatenate a string into a file through a command that is a single valued argument to a script:
defining sample text:
TEXT="sample text"
defining characteristic script : transfer.sh
$1
desired usage (to be corrected):
./transfer.sh "echo $TEXT >> test.log"
desired output in test.log
... (previous contents)
sample text