mirror of
https://github.com/linux-speakup/espeakup.git
synced 2026-08-09 09:19:09 +02:00
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.
5 lines
99 B
Bash
Executable file
5 lines
99 B
Bash
Executable file
#!/bin/bash
|
|
ver=$(grep "const char.*Version" espeakup.c)
|
|
ver=${ver%\"*}
|
|
ver=${ver#*\"}
|
|
echo ${ver}
|