The backup program storeBackup saves some files in the bz2 format. The following command makes such folders usable.
find . -name "*.bz2" | while read filename; do bzip2 -d "$filename"; done;
Yet Another Blog
The backup program storeBackup saves some files in the bz2 format. The following command makes such folders usable.
find . -name "*.bz2" | while read filename; do bzip2 -d "$filename"; done;