#!/bin/bash
#SBATCH --account=nn5001k
#SBATCH --time=24:0:0


for file in *.nc
do
  nccopy -d 9 $file dum.nc
  mv dum.nc $file
done
