Help for this page

Select Code to Download


  1. or download this
    #!/bin/bash
    APPNAME="AnyApp"
    ...
    }
    print "This is the var \$APPNAME and this is what needs to get substit
    +uted $APPNAME\n";
    EOF
    
  2. or download this
    #!/usr/bin/perl
    $APPNAME="AnyApp"
    require "prog_file.lib";
    read_prog
    
  3. or download this
    sub read_prog
    print <<"EOF";
    print "This is the var \$APPNAME and this is what needs to get substit
    +uted $APPNAME\n";
    EOF
    1;