Skip to content

Instantly share code, notes, and snippets.

@shriphani
Created July 23, 2014 18:35
Show Gist options
  • Save shriphani/40560f144aed7412ea42 to your computer and use it in GitHub Desktop.
Save shriphani/40560f144aed7412ea42 to your computer and use it in GitHub Desktop.
#!/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