I have this script that should make sure that the users current PHP version is between a certain range, though it SHOULD work, there is a bug somewhere that makes it think t
There is possibility for deb-distributions:
dpkg --compare-versions
For example:
dpkg --compare-versions "0.0.4" "gt" "0.0.3" if [ $? -eq "0" ]; then echo "YES"; else echo "NO"; fi