Tagged Questions
10
votes
7answers
468 views
How to prepend to a file (add at the top)
Imagine you have a file
sink("example.txt")
data.frame(a = runif(10), b = runif(10), c = runif(10))
sink()
and would want to add some header information, like
/* created on 31.3.2011 */
/* author ...
8
votes
5answers
374 views
Is it possible to prepend data to an file without rewriting?
I deal with very large binary files ( several GB to multiple TB per file ). These files exist in a legacy format and upgrading requires writing a header to the FRONT of the file. I can create a new ...
1
vote
3answers
202 views
How do I prepend information to STDERR when a method generates stderr?
Is there some way I can catch when a method generates a write to STDERR?
I'm trying to pre-pend some information with each STDERR write.
let's say our method is:
parser.thatGeneratesSTDERR();
...