For example, following commands (in Windows 7):
date/t>>t.txt
time/t>>t.txt
create following lines in t.txt:
Fri 06/12/2015
01:37 PM
Is it possible to join output of two commands (see above) in one line (see below)?
Fri 06/12/2015 01:37 PM
The above mentioned goal can be reached by command:
echo %date% %time%
But it is not an answer on this question, because this question is not about only above commands.