Hi FreeBSD stable, After upgrade to 11.0-BETA2, a lot of sed scripts are no longer valid:
FreeBSD 10.3 --------------------- $ echo "abc_ABC.def" | sed -e 's/[^A-Z0-9]//g' ABC FreeBSD 11.0 -------------------- $ echo "abc_ABC.def" | sed -e 's/[^A-Z0-9]//g' bcABCdef Indeed, in 11.0 you need to re rewrite the sentence as follows: $ echo "abc_ABC.def" | sed -e 's/[^[:upper:][:digit:]]//g' ABC In linux, sed behaves exactly as 10.3. Is this behaviour expected or is a bug? Best regards _______________________________________________ freebsd-stable@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-stable To unsubscribe, send any mail to "freebsd-stable-unsubscr...@freebsd.org"