tar-async icon indicating copy to clipboard operation
tar-async copied to clipboard

support {input: "existing.tar"} ?

Open bosky101 opened this issue 11 years ago • 0 comments

more of a feature request. my use case is being able to add to an existing tar.

i'm yet to find a node module that allows opening existing tar file.

// this would be cool
var cloned = new Tar ( {input: "existing.tar" , output:"next.tar" });
cloned.append(...)
// this should also work
var udpated = new Tar ( {input: "existing.tar" , output:"existing.tar" });
updated.append(...)

if this is already possible, a demo in examples / test cases will be great.

~B

bosky101 avatar Oct 21 '13 14:10 bosky101