I would like copy the contents of a file twice on terminal,
but I don't generates same files,
so I type cat a >> a
and this job doesn't stop,
I kill the job and open file a and found contents of a file a have many row...
I know cat a > b ; cat a >> b
is work,
but I wonder why this code ( cat a >> a
) is not working ?
Please tell me what happen if anybody knows my problem.
thanks.