ObiPanda has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/env perl #use 5.36.1; use strict; use warnings; my $Software_Path = "C:/Program Files/qBittorrent/qbittorrent.exe"; my $Wait_Time = 10; # Implement Time Delay system qq[taskkill /im qbittorrent.exe]; sleep int(rand($Wait_Time)); system qq[$Software_Path]; exit
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: how to system call that exits
by BillKSmith (Monsignor) on Apr 27, 2024 at 19:01 UTC | |
by ObiPanda (Acolyte) on Apr 27, 2024 at 19:45 UTC | |
by NERDVANA (Priest) on Apr 28, 2024 at 02:10 UTC | |
by Corion (Patriarch) on Apr 28, 2024 at 07:12 UTC | |
by BillKSmith (Monsignor) on Apr 30, 2024 at 19:35 UTC | |
Re: how to system call that exits
by Anonymous Monk on Apr 28, 2024 at 07:05 UTC | |
Re: how to system call that exits
by harangzsolt33 (Deacon) on Apr 28, 2024 at 02:17 UTC |