I would like to split the string with delimiter. variable my_string contains Hello_This_Is_My_string The output will be only
Below is my code :
result = $(echo $my_string |" cut -d '_' -f2")
However, I am getting <Is> instead of <This_Is_My_string>