aboutsummaryrefslogtreecommitdiffstats
path: root/version.sh
blob: e894ee7e0469a64b31843aabc11ce539d2d137ce (plain)
1
2
3
4
5
#!/bin/sh

MAJOR=`grep "export XEN_VERSION" $1 | sed 's/.*=//g' | tr -s " "`
MINOR=`grep "export XEN_SUBVERSION" $1 | sed 's/.*=//g' | tr -s " "`
printf "%d.%d" $MAJOR $MINOR