I am trying to cat
three files and obtain and insert a newline \n
after each file ,I thought of using something like :
cat f1 f2 f3|tr "\EOF" "\n"
without success.
What is the easiest way to achieve that ?
I am trying to cat
three files and obtain and insert a newline \n
after each file ,I thought of using something like :
cat f1 f2 f3|tr "\EOF" "\n"
without success.
What is the easiest way to achieve that ?
or
Try this:
As soon as you
cat
the files, there will be no EOF in between them, and no other way to find the border, so I'd suggest something likefor file in f1 f2 f3; do cat $file; echo; done
or, with indentation,EOF
isn't a character, not even CTRL-D - that's just the usual terminal method for indicating EOF on interactive input. So you can't use tools for translating characters to somehow modify it.For this simple case, the easiest way is to stop worrying about trying to do it in a single
cat
:-)will do the trick just fine. Any larger number of files may be worthy of a script but I can't see the necessity for this small case.
If you want to combine all those streams for further processing, simply run them in a subshell:
i was having a similar problem, what worked best for me i my situation was: