echo "en_Us" | sed "s._./." # returning en/Us
I recently encounter a sed command like above, I am not 100% sure why, according to "man sed", s command usually comes like
sed "s/regex/regex"
to replace the the matched regex, in this case, it only has one slash, what does that mean ?