I have just uploaded a backup i made using debian command shell.
Only the directory names have been correctly extracted back to the proper extensions...all of the files have got ".gz" on the end of them.
How do i fix this in virtualmin?
Asseen below, directories are fine however, there's hundreds of files with the .gz extension on them)
/pomo
/random_compat
/rest-api
/theme-compat
/widgets
admin-bar.php.gz
atomlib.php.gz
author-template.php.gz
bookmark-template.php.gz
no matter what i do, i cannot get any program to recursive decompress files (only folders).
I have tried virtualmin file manager, linux commands, nothing seems to work!
i havea part solution thanks to howtoforge...
for f in wordpress/*.gz ; do gunzip $f ; done
however, i still have to figure out how to make the above command work recursively using -exec
https://ajecreative.com.au
Here is the final solution(thanks to an online friend)
find wordpress/ -name "*.gz" -exec ls -lh {} \;
Test it first with the above command, ls -lh does not break anything but you see what files it would mess. If the files are the correct ones, change ls -lh to gunzip.
So it's
find wordpress/ -name ".gz" -exec gunzip {}\;
Where wordpress/ is the first level directory which contained uncompressed files in my case. Hope this helps others
https://ajecreative.com.au