Help for this page

Select Code to Download


  1. or download this
    $logfile = "C:\\somepath\\somefile";
    open (LOGFILE, "$logfile) || die "Can't open $logfile: $!";
    do something with the file
    close (LOGFILE);
    
  2. or download this
    $cmd = "G:\\somepath\\bin\\vfxolog -U vsifax";
    $return = `$cmd` or die "Can't execute $cmd: $!";
    
  3. or download this
    $cmd = "G:\\somepath\\bin\\vfxolog -U vsifax";
    system ( $cmd ) || die "Can't execute $cmd: $!";