get-version 218 B

12345678910111213141516
  1. #!/usr/bin/perl
  2. use strict;
  3. use warnings;
  4. open(CONF, "configure.ac") or die "Couldn't open configure.ac: $!\n";
  5. while (<CONF>) {
  6. if (/^AC_INIT\(\[stow\], \[(.+?)\]/) {
  7. print "$1\n";
  8. exit 0;
  9. }
  10. }
  11. exit 1;