diff options
author | Joe <bousset.rudy@gmail.com> | 2022-04-27 22:28:58 +0200 |
---|---|---|
committer | Joe <bousset.rudy@gmail.com> | 2022-04-27 22:28:58 +0200 |
commit | de12dd83900aef40b03d21057b45644e712d7da6 (patch) | |
tree | 32e40342a23e240596a8b698a7237faed6891f97 /vps-do.pl | |
parent | Renamed file (diff) | |
download | joe-scripts-de12dd83900aef40b03d21057b45644e712d7da6.tar.gz joe-scripts-de12dd83900aef40b03d21057b45644e712d7da6.tar.bz2 joe-scripts-de12dd83900aef40b03d21057b45644e712d7da6.tar.xz joe-scripts-de12dd83900aef40b03d21057b45644e712d7da6.tar.zst joe-scripts-de12dd83900aef40b03d21057b45644e712d7da6.zip |
new script
Diffstat (limited to '')
-rwxr-xr-x | vps-do.pl | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -3,17 +3,12 @@ use strict; use warnings; use Term::ANSIColor; + use constant SCRIPTS_DIR => '/root/scripts/src/'; use constant SSH_BOY => 'root@jozanofastora.xyz'; sub main { my $argc = $#ARGV + 1; - if ($argc < 1) { - print colored("Failed!\n", 'bold red') - . 'Missing argument, at least 2 needed ' - . colored("[script-invoke - (argument(s))]\n", 'bold'); - exit 1; - } my $called_script = ''; my $argv_line = ''; if ( |