equal
deleted
inserted
replaced
1 #!/bin/bash |
1 #!/bin/bash |
2 |
2 |
3 YEAR=`date +2003-%Y` |
3 YEAR=`date +%Y` |
4 HGROOT=`hg root` |
4 HGROOT=`hg root` |
|
5 |
|
6 function hg_year() { |
|
7 if [ -n "$(hg st $1)" ]; then |
|
8 echo $YEAR |
|
9 } |
5 |
10 |
6 # file enumaration modes |
11 # file enumaration modes |
7 |
12 |
8 function all_files() { |
13 function all_files() { |
9 hg status -a -m -c | |
14 hg status -a -m -c | |
189 |
194 |
190 (echo "/* -*- mode: C++; indent-tabs-mode: nil; -*- |
195 (echo "/* -*- mode: C++; indent-tabs-mode: nil; -*- |
191 * |
196 * |
192 * This file is a part of LEMON, a generic C++ optimization library. |
197 * This file is a part of LEMON, a generic C++ optimization library. |
193 * |
198 * |
194 * Copyright (C) "$YEAR" |
199 * Copyright (C) 2003-"$(hg_year $1)" |
195 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport |
200 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport |
196 * (Egervary Research Group on Combinatorial Optimization, EGRES). |
201 * (Egervary Research Group on Combinatorial Optimization, EGRES). |
197 * |
202 * |
198 * Permission to use, modify and distribute this software is granted |
203 * Permission to use, modify and distribute this software is granted |
199 * provided that this copyright notice appears in all copies. For |
204 * provided that this copyright notice appears in all copies. For |