This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
curl -L https://github.com/josquin-research-project/jrp-scores/archive/master.zip > master.zip | |
unzip master.zip | |
rm master.zip | |
mv jrp-scores-master jrp-scores | |
cd jrp-scores | |
rm .gitignore .gitmodules .note | |
for i in [A-Z]?? | |
do |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
wget https://github.com/josquin-research-project/jrp-scores/archive/master.zip | |
unzip master.zip | |
rm master.zip | |
mv jrp-scores-master jrp-scores | |
cd jrp-scores | |
rm .gitignore .gitmodules .note | |
for i in [A-Z]?? | |
do |