44

How do I check on a Unix server what version of the Alpine mail client is installed?

I have root access in case that is needed.

bahamat
  • 5,782
Devoted
  • 925
  • 3
  • 8
  • 13

3 Answers3

80

That works even without alpine installed (e.g. in Docker container):

$ cat /etc/alpine-release 
3.4.6
4

oh, just found it:

alpine -version
Devoted
  • 925
  • 3
  • 8
  • 13
3

You should be able to run the command alpine -v or alpine -version ... you can also start Alpine and press ? on the main menu to open the main Help page, which will also tell you the version.

If your system has a package manager that you used to install Alpine, you can also check with that. For example, on my Debian system, I'd run:

$ dpkg -l | grep alpine
ii  alpine      1.10+dfsg-3     Text-based email client, friendly for novices but powerful
quack quixote
  • 43,504