#!/usr/bin/perl -w
system ("perl spd.pl");
system ("gunzip xyz.aa.gz");
exit;
Here 2nd system call will generate a unzip file xyz.aa now i want that if any other file already exist in the folder it should be overwritten without asking any user input
what flag i need to use with gunzip so that it should overwrite the existing file xyz.aa automatically.
regards
system ("perl spd.pl");
system ("gunzip xyz.aa.gz");
exit;
Here 2nd system call will generate a unzip file xyz.aa now i want that if any other file already exist in the folder it should be overwritten without asking any user input
what flag i need to use with gunzip so that it should overwrite the existing file xyz.aa automatically.
regards