Sora Posted October 22, 2013 Share Posted October 22, 2013 Hey guys , i asked my friend to make a backup of my server in linux and he done that and gave me a tar file ( mods.tar ) anyways , i thought that i just should extract it like any compressed file ( zip , rar , 7z) etc it appeared that there's another compressed file with no extension inside of that tar file ( mods.tar ) called mods i have extracted it but i see every single file compressed into .gz file here's an example .. Screenshot ( inside of race_traffic_sensor resource ) : any solution? Link to comment
qaisjp Posted October 22, 2013 Share Posted October 22, 2013 LOL. Make a recursive script to untar it Link to comment
Sora Posted October 22, 2013 Author Share Posted October 22, 2013 LOL. Make a recursive script to untar it Thanks so much ! @echo off for /r %%i in (*) do "C:\Program Files\7-Zip\7z.exe" e %%i del *.gz* /Q Link to comment
qaisjp Posted October 23, 2013 Share Posted October 23, 2013 you're welcome although i have the slight feeling you're being sarcastic.. amirite? Link to comment
Sora Posted October 23, 2013 Author Share Posted October 23, 2013 nope not at all it had really solved my problem , it extracts the .gz files in the same folder and then deletes them ^^ Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now