| 1 | #! /bin/sh
|
|---|
| 2 |
|
|---|
| 3 | # Simple program to make new version numbers for the shell.
|
|---|
| 4 | # Big deal, but it was getting out of hand to do everything
|
|---|
| 5 | # in the makefile. This creates a file named by the -o option,
|
|---|
| 6 | # otherwise everything is echoed to the standard output.
|
|---|
| 7 |
|
|---|
| 8 | # Copyright (C) 1996-2002 Free Software Foundation, Inc.
|
|---|
| 9 | #
|
|---|
| 10 | # This program is free software; you can redistribute it and/or modify
|
|---|
| 11 | # it under the terms of the GNU General Public License as published by
|
|---|
| 12 | # the Free Software Foundation; either version 2, or (at your option)
|
|---|
| 13 | # any later version.
|
|---|
| 14 | #
|
|---|
| 15 | # This program is distributed in the hope that it will be useful,
|
|---|
| 16 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 17 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 18 | # GNU General Public License for more details.
|
|---|
| 19 | #
|
|---|
| 20 | # You should have received a copy of the GNU General Public License
|
|---|
|
|---|