2
0
mirror of https://github.com/WikiTeam/wikiteam synced 2024-11-12 07:12:41 +00:00
wikiteam/batchdownload/7z2bz2.sh
2014-12-17 13:35:59 +01:00

11 lines
311 B
Bash

#!/bin/bash
# 7z2bz2.sh
# Simple wrapper to convert xml.7z files to xml.bz2
# Useful to simplify multithreaded batch conversion, for instance:
# find * -name '*7z' -print | xargs -P8 -n 1 ./7z2bz2.sh
# CC-0, 2014
DUMP=$(echo $1 | sed 's/.7z//')
echo $DUMP
7z e -so $DUMP.7z $DUMP | bzip2 -c > $DUMP.bz2;
rm $1;