-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdebut.sh
executable file
·61 lines (42 loc) · 1.09 KB
/
debut.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/bin/bash
set -e
# https://unix.stackexchange.com/a/314370
start_time="$(date -u +%s)"
# avoid too many open files issue
ulimit -n 50000
# Debussy
./Debussy-Rêverie.py
# Bartok: 6 Romanian folk dances
./1.Der-Tanz-mit-dem-Stabe.py
./2.Brâul.py
./3.DerStampfer.py
./4.Tanz-aus-Butschum.py
./5.Rumänische-Polka.py
./6.Schnell-Tanz.py
# custom arrangement of virtuoso piano tune
./"Bartok Romanian Dances op 8a first movement.py"
# pretty gospel song
./Be-Thou-My-Vision.py
# Melancholy Waltz
./Chopin-Mazurka.py
# Pretty song
./clara-schumann-am-strand.py
# love song
./Fanny-Mendelssohn-6-Lieder-Op.1-no-6-Gondellied.py
# Funny sounding baroque song
./Farrenc-Etude-No2.in_A_minor_op50.py
# ancient song
./Hildegard-o-pastor.py
# impressionistic song
./lili-boulanger-un-jarden-clair.py
# annoying Mozart song
./Mozart-turkish-march.py
# Baudy Waltz
./Teresa-Carreno.py
# jazz
./whispering.py
# Scott's amateur composition
./working-on-problems.py
end_time="$(date -u +%s.%N)"
elapsed="$(bc <<<"($end_time-$start_time)/60")"
echo "Total of $elapsed minutes elapsed for build and download process"