jrm@
Developer
There was a change in sed, that many people will see for the first time in 11.0.
## FreeBSD 10.3
## FreeBSD 11.0-RC2
I haven't tested, but it looks like it was the change introduced in revision 269729.
cat test.sh
Code:
#!/bin/sh
printf "***"
printf "abc" | sed 's/a/z/g'
printf "***"
test.sh
Code:
***zbc
***
test.sh
Code:
***zbc***
Last edited: