in reply to How to open a XVI32 hex editor in Perl

Assuming you installed it in C:\Program Files\XVI32\

use strict; use warnings; my @args = ("C:\\Program Files\\XVI32\\XVI32.exe", "argu1", "argu2"); system(@args) == 0 or die "system @args failed: $?"

You can supply arguments to open a specific file or even supply a script with the /S flag, see xvi32, section "Running scripts automatically from the command line" for details.

Cheers,

Harry

Replies are listed 'Best First'.
Re^2: How to open a XVI32 hex editor in Perl
by GoForIt (Novice) on Apr 08, 2010 at 11:50 UTC

    Hi, Thanks. Yes, I'm able to open the editor and automate the process.

    Thanks,