All Questions
1 question
1
vote
0
answers
66
views
How can I easily deal with differences between BSD and GNU sed? [duplicate]
BSD and GNU sed have some small differences in what arguments they accept. I just learned that I have to use different command lines when using -i:
sed -i '' # BSD
sed -i # GNU
I solved this with ...