- 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
- or download this
#!/usr/bin/perl
$APPNAME="AnyApp"
require "prog_file.lib";
read_prog
- 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;