Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
426 B

  1. #Flush output buffer for remote.exe
  2. select(STDOUT); $|=1;
  3. $old="= 49100,\"";
  4. $new="= -1,\"".@ARGV[0]."\\";
  5. while (defined($_ = <STDIN>))
  6. {
  7. $myline=$_;
  8. $myline=s/^.*CatalogFile=.*$//i;
  9. $myline=s/^.*AddReg=.*$//i;
  10. $myline=s/^.*DelReg=.*$//i;
  11. $myline=s/^.*symbols.inf,,,4.*$//i;
  12. $myline=s/^.*CustomDestination=.*$//i;
  13. $myline=s/^.*EndPrompt=.*$//i;
  14. $myline=s/$old/$new/;
  15. print $_;
  16. }