execute command in perl: system
Example:
#!/home/utils/perl-5.22/5.22.0-005/bin/perl
use warnings;
my $golden_cl=123;
system("echo \"GC=$golden_cl\"");
好的心态+正确的方法
Example:
#!/home/utils/perl-5.22/5.22.0-005/bin/perl
use warnings;
my $golden_cl=123;
system("echo \"GC=$golden_cl\"");