This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1gr.cz | |
2mdn.net | |
10.im.cz | |
2975c.v.fwmrm.net | |
a.1gr.cz | |
a.blesk.cz | |
a.cele.cz | |
a.denik.cz | |
a.iprima.cz | |
a.slunecnice.cz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ditto -x -k -V takeout-20200927T232117Z-001.zip \ | |
takeout-20200927T232117Z-002.zip \ | |
takeout-20200927T232117Z-003.zip \ | |
takeout-20200927T232117Z-004.zip \ | |
takeout-20200927T232117Z-005.zip \ | |
takeout-20200927T232117Z-006.zip \ | |
result 1>log.txt 2>&1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
destDir="../Takeout-merge" | |
mkdir -p $destDir | |
# Merges the different unzipped Takeout folders into one | |
for p in $(seq -f "%03g" 1 ${1:-1}); do | |
if [ -f $p/DONE ]; then | |
echo "Skipping $p/Takeout ... " |