GnuCOBOL Presentation to Linux Users of Victoria, July 16, 2016 =============================================================== Source Installation ------------------- cd /usr/local/src/ wget ftp://ftp.gnu.org/gnu/gnucobol/gnu-cobol-1.1.tar.gz tar xvf gnu-cobol-1.1.tar.gz cd gnu-cobol-1.1/ ./configure make make check make install ldconfig Package Install --------------- apt-get install open-cobol OR yum install open-cobol OR dnf install open-cobol Test Programs -------------- cd ~ mkdir cobol wget http://levlafayette.com/files/hello.cob cobc -Wall -x -free hello.cob -o hello-world ./hello-world cobc -Wall -m -free hello.cob cobc -Wall -C -free hello.cob wget http://levlafayette.com/files/shortest.cob cobc -x shortest.cob ./shortest wget http://levlafayette.com/files/hello-trad.cob cobc -x hello-trad.cob ./hello-trad wget http://levlafayette.com/files/luv.cob cobc -Wall -x -free luv.cob ./luv wget http://levlafayette.com/files/literals.cob cobc -Wall -free -x literals.cob ./literals wget http://levlafayette.com/files/posmov1.cob cobc -Wall -free -x posmov1.cob ./posmov1 wget http://levlafayette.com/files/posmov2.cob cobc -Wall -free -x posmov2.cob ./posmov2 wget http://levlafayette.com/files/redefines.cob wget http://levlafayette.com/files/renames.cob cobc -Wall -free -x redefines.cob cobc -Wall -free -x renames.cob ./redefines ./renames wget http://levlafayette.com/files/posmov3.cob wget http://levlafayette.com/files/FINANCIALS cobc -Wall -free -x posmov3.cob ./posmov3 wget http://levlafayette.com/files/posmov4.cob wget http://levlafayette.com/files/class.cob wget http://levlafayette.com/files/evaluate.cob cobc -Wall -free -x posmov4.cob cobc -Wall -free -x class.cob ./posmov4 ./class ./evaluate