# Here is my example: my $grep_pattern= "^\\s"; my @local_replica_info= grep /$grep_pattern/, # This is fine @my_array;
my @local_replica_info= grep /\s/, # This corrupts text coloration @my_array;
# Now text coloration is corrupted ....
Log in to post a comment.