annotate tidy.sh @ 3:475bddaf580c tip

Add report and Presentation
author Dave Moffat <d.j.moffat@qmul.ac.uk>
date Wed, 25 Feb 2015 16:07:05 +0000
parents 26494c0d9ffd
children
rev   line source
d@0 1 #!/bin/bash
d@0 2 # tidy dataset
d@0 3
d@0 4 for i in {1..52}
d@0 5 do
d@0 6 mkdir T$i/arch
d@0 7 mv T$i/* T$i/arch/
d@0 8 mv T$i/arch/01.wav T$i/
d@0 9 mv T$i/arch/01.csv T$i/
d@0 10 done
d@0 11
d@0 12
d@0 13