Skip to content

Instantly share code, notes, and snippets.

@icaoberg
Created July 20, 2018 00:50
Show Gist options
  • Save icaoberg/ac803bf0aeece1abb70731df766539c9 to your computer and use it in GitHub Desktop.
Save icaoberg/ac803bf0aeece1abb70731df766539c9 to your computer and use it in GitHub Desktop.
Remove all empty folder in the current path
#!/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
find . -empty -type d -exec rmdir {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment