Kaydet (Commit) b8350bcd authored tarafından Jens-Heiner Rechtien's avatar Jens-Heiner Rechtien

INTEGRATION: CWS customizer (1.1.2); FILE ADDED

2004/08/31 15:41:47 is 1.1.2.1: #i33634# userland scripts
üst 5f7fbe3d
: # -*- perl -*-
eval 'exec perl -wS $0 ${1+"$@"}'
if 0;
# create setup self extracting script
if( $#ARGV < 2 )
{
print <<ENDHELP;
USAGE: $0 <inputshellscript> <libraryfile> <outputshellscript>
<inputshellscript>: the start shell script, located next to this perl script
<libraryfile>: the library file, that is included into the shell script
<outfile>: the target shellscript
ENDHELP
exit;
}
$infile = $ARGV[0];
$library = $ARGV[1];
$outfile = $ARGV[2];
$infile =~ tr/[A-Z]/[a-z]/;
# read script header
open( SCRIPT, "<$infile" ) || die "cannot open $infile";
open( OUTFILE, ">$outfile$$.tmp" ) || die "cannot open $outfile";
@scriptlines = <SCRIPT>;
$linenum = $#scriptlines+2;
foreach (@scriptlines)
{
# lineend conversion (be on the safe side)
chomp;
$_ =~ tr/\r//;
s/^\s*linenum=.*$/linenum=$linenum/;
print OUTFILE "$_\n";
}
close( SCRIPT );
close( OUTFILE );
system( "cat $library >>$outfile$$.tmp" );
rename "$outfile$$.tmp", "$outfile";
chmod 0775, $outfile;
exit;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment