I want to create files with the current date as prefix and some string as the remaining part of the filename.
Something like this:
touch `date +"%Y-%m-%d-"$1`.md hello
where $1
should pick up hello
and create me a file called 2014-3-3-Hello.md
.