34
4
I'm .tar
ing some files with the path example/super_user/Output.*
.
The resulting .tar
looks like this:
+ example
+ super_user
- Output.zip
- Output.xml
- Output.txt
But I want the file to be like the following:
- Output.zip
- Output.xml
- Output.txt
Do you know how I can achieve this while still being in another directory?
Do make sure to avoid tarbombs with archives like that.
– user1686 – 2014-09-30T12:36:52.497tar --strip-components=1000 ? – Zaar Hai – 2019-09-02T06:40:07.607