/
Comparison package versions
Comparison package versions
To be sure your package will be upgraded to the latest version you shoult test it. To do it you could use dpkg --compare-versions command. The command requires three argumenst: version and the test operation. For example:
root@lenovo:~# dpkg --compare-versions "9.9+deb9u1+dilos20" lt "10.3+deb10u7+dilos1";echo $?
0
The result returns as the exit code which we can see by echo $? shell command.
The test operations could be:
lt - less than
gt - great than
See the man page on dpkg for more conditions.
, multiple selections available,
Related content
Source packages
Source packages
More like this
Get dependencies script for DU4
Get dependencies script for DU4
More like this
How to upgrade DilOS from APT repo
How to upgrade DilOS from APT repo
More like this
How to build DEB package in userland (dilos-userland)
How to build DEB package in userland (dilos-userland)
More like this
Transition procedure from du2 to du3
Transition procedure from du2 to du3
More like this
Process of porting of new packages from Debian
Process of porting of new packages from Debian
More like this