bel28kent / Mysterium

An encoding of Alexander Scriabin's solo piano music in kern
7 stars 1 forks source link

Prefix filenames with with "scriabin-" #5

Closed craigsapp closed 1 year ago

craigsapp commented 1 year ago

It would also be useful to prefix all Humdrum files with scriabin-. This will allow mixing of files into a directory with other works by various composers who make use the similar opus number (and this prevent overwriting of files in such a case).

If this is agreeable to you, here is a bash command to do this:

for dir in op??
do
   (cd $dir;
      for file in op*.krn
      do
         git mv $file scriabin-$file
      done)
done

(do this command after issues #2, #3, and #4, since those changes have to be done in that order).

Then type git status to make sure everything went well (all changes should be "renamed:"). Then git commit and git push.

bel28kent commented 1 year ago

Done.