creating base directories ... creating .spp file without shbang leader ... preprocessing it to stdout (expect no header 'cos to stdout) ... 1 2 3 4 preprocessing the same .spp to stdout with forced header (expect leading header 'cos no shbang forced) ... #============================================================================= # # T H I S I S A G E N E R A T E D F I L E # # M A N U A L E D I T S M A Y B E L O S T # # Generated by: BLANKED_OUT_BY_ADE201_adespp_header # Generated with: BLANKED_OUT_BY_ADE201_adespp_header # Generated on host: BLANKED_OUT_BY_ADE201_adespp_header # Generated on date: BLANKED_OUT_BY_ADE201_adespp_header # #============================================================================= 1 2 3 4 preprocessing the same .spp file to file (expect leading header 'cos no shbang and to file) ... #============================================================================= # # T H I S I S A G E N E R A T E D F I L E # # M A N U A L E D I T S M A Y B E L O S T # # Generated by: BLANKED_OUT_BY_ADE201_adespp_header # Generated with: BLANKED_OUT_BY_ADE201_adespp_header # Generated on host: BLANKED_OUT_BY_ADE201_adespp_header # Generated on date: BLANKED_OUT_BY_ADE201_adespp_header # #============================================================================= 1 2 3 4 preprocessing the same .spp file to file (expect no header 'cos forced) ... 1 2 3 4 creating .spp file with shbang leader ... preprocessing it to stdout (expect no header 'cos to stdout) ... #!/usr/bin/ksh echo 1 echo 2 echo 3 echo 4 preprocessing the same .spp file to file (expect delayed header 'cos has shbang and to file) ... #!/usr/bin/ksh #============================================================================= # # T H I S I S A G E N E R A T E D F I L E # # M A N U A L E D I T S M A Y B E L O S T # # Generated by: BLANKED_OUT_BY_ADE201_adespp_header # Generated with: BLANKED_OUT_BY_ADE201_adespp_header # Generated on host: BLANKED_OUT_BY_ADE201_adespp_header # Generated on date: BLANKED_OUT_BY_ADE201_adespp_header # #============================================================================= echo 1 echo 2 echo 3 echo 4