I run the following sed syntax on Solaris machine and on Linux machine
on Linux machine sed do the JOB its remove all characters until the first number.
but why this sed syntax not work on Solaris ?
What I need to change in the sed syntax in order run it on Solaris?
on solaris (sed - not remove the strings until the first number?)
solaris:/ ROOT > echo "Release............5.3.7.1-12" | sed 's/[^0-9]\+//'
Release............5.3.7.1-12
on linux ( I get good results )
linux tmp]# echo "Linux Release............5.3.7.1-12" | sed 's/[^0-9]\+//'
5.3.7.1-12