Skip to content

Instantly share code, notes, and snippets.

@icaoberg
Last active July 20, 2018 01:23
Show Gist options
  • Save icaoberg/870f1c9c368b0a039d3c930526be0359 to your computer and use it in GitHub Desktop.
Save icaoberg/870f1c9c368b0a039d3c930526be0359 to your computer and use it in GitHub Desktop.
Compress all folders in the current directory
#!/bin/bash
#
#$ -j y
#$ -S /bin/bash
#$ -cwd
## the next line selects the partition/queue
#SBATCH -p short1
## the next line selects the number of nodes
#SBATCH -N 1
## the next line selects the number of CPUs
#SBATCH -n 1
## the next line selects the memory size
#SBATCH --mem=1G
## the next line selects the walltime
#SBATCH -t 1:00:00
## the next lines are used to mail the user
## valid type values are BEGIN, END, FAIL, REQUEUE, and ALL (any state change).
##SBATCH --mail-type=ALL
##SBATCH --mail-user=icaoberg@cmu.edu
for D in *
do
if [ -d "$D" ]; then
echo tar -cvzf "$D".tgz "$D"
tar -cvzf "$D".tgz "$D"
if [ -f "$D".tgz ]; then
echo rm -rf "$D"
rm -rf "$D"
fi
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment