Hi, what would be the best way to remove whitespace only around certain character. Let's say a dash - Some- String- 12345- Here
would become Some-String-12345-Here
. Something like sed 's/\ -/-/g;s/-\ /-/g'
but I am sure there must be a better way.
Thanks!