Created
July 23, 2014 18:35
-
-
Save shriphani/40560f144aed7412ea42 to your computer and use it in GitHub Desktop.
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
#!/bin/bash | |
cd /bos/tmp19/spalakod/clueweb12pp/kba/2013_sample_social_corpus/ | |
for filename in $(ls *.xz.gpg) | |
do | |
gpg -d $filename > ${filename/xz.gpg/xz} | |
echo "removing $filename" | |
rm $filename | |
done | |
for filename in $(ls *.xz) | |
do | |
xz -d $filename | |
echo "removing $filename" | |
rm $filename | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment