or download this
$ perl -wE 'my $str = "Some text with whitespace"; $str =~ s/\s /_/g;
+ say $str'
Some text with_whitespace
...
Some_text_with__whitespace
$ perl -wE 'my $str = "Some text with whitespace"; $str =~ s/\s+/_/g;
+ say $str'
Some_text_with_whitespace