espeakup/version
William Hubbs 8dca597f29 Added a version script
I added a version script.  This is used in the Makefile to get the
version of espeakup when none is specified when a tarball is created.
2009-03-03 21:58:02 -06:00

5 lines
99 B
Bash
Executable file

#!/bin/bash
ver=$(grep "const char.*Version" espeakup.c)
ver=${ver%\"*}
ver=${ver#*\"}
echo ${ver}