The list of programs on the main page contains links to compiled versions of the program for various operating systems. Here is a sample entry in the alphabetical listing of programs on the main page:
The list of the components given in the example program entry above is:
To save the compiled programs to your hard disk, you could try clicking on the link and your web browser might prompt you about saving the file. If your browser instead tries to display the compiled program as text, then you should try to right click (in windows/linux) on the link and choose the "Save As..." option in the menu which appears at the location of the mouse (or do a option-click in OSX). In linux, cygwin, and osx (with GNU utilities installed), you can use the wget program to download the executable prorams from the command-line. For example, here are the commands for copying the barnum executable program to your computer for various operating systems: wget http://extras.humdrum.org/bin/linux-static/barnum wget http://extras.humdrum.org/bin/cygwin/barnum wget http://extras.humdrum.org/bin/osxppc/barnum wget http://extras.humdrum.org/bin/osxintel/barnum wget http://extras.humdrum.org/bin/windows/barnumIn Apple OS X, if you do not have wget installed, you can try downloading from the command-line terminal with the apple-specific (thus inferior) curl program: curl http://extras.humdrum.org/bin/osxintel/barnum -o barnumIn unix-like operating systems (OSX and linux), you may need to run the following command to let the operating system know that the file is a program: chmod 0755 barnum You can run the program from any location. If you run it from the current directory, you may need to add an explicit path so that the operating system knows where it is. For example, if a program call such as: barnum file.krnResults in an error stating that barnum is not found, then you may be able to fix the problem by adding ./ before the program name (without any spaces): ./barnum file.krnLikewise, in cygwin, you may need to run the command like this: ./barnum.exe file.krn |