I wrote a small code to set the system's date/time. I took time in a scalar $time and then split that and stored in array @timeIs. Then used $hour and $min to extract out hour and minutes from the array. I think this was a bad approach which is time and length (length of code) consuming. I need some suggestion to reduce the number of steps and make that in one line. Any suggestion?
#!/usr/bin/perl
use warnings;
use strict;
print "Enter day";
chomp (my $day = <STDIN>);
print "Enter month";
chomp (my $month = <STDIN>);
print "Enter year";
chomp (my $year = <STDIN>);
print "Enter time in hour:minute format";
chomp (my $time = <STDIN>);
my @timeIs = split(/:/,$time);
my $hour = $timeIs[0];
my $min = $timeIs[1];
my $date = `date $month$day$hour$min$year`;
print $date;