Changeset 3413 for pykota/trunk/man
- Timestamp:
- 09/27/08 22:02:37 (16 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/man/genman.sh
r3275 r3413 8 8 # the Free Software Foundation, either version 3 of the License, or 9 9 # (at your option) any later version. 10 # 10 # 11 11 # This program is distributed in the hope that it will be useful, 12 12 # but WITHOUT ANY WARRANTY; without even the implied warranty of 13 13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 14 # GNU General Public License for more details. 15 # 15 # 16 16 # You should have received a copy of the GNU General Public License 17 17 # along with this program. If not, see <http://www.gnu.org/licenses/>. … … 19 19 # $Id$ 20 20 # 21 for prog in pksetup pkrefund pknotify pkusers pkinvoice pkturnkey pkbcodes pkmail pkbanner autopykota dumpykota edpykota pykotme repykota warnpykota pkprinters pykosd ; do 21 for prog in pksetup pkrefund pknotify pkusers pkinvoice pkturnkey pkbcodes pkmail pkbanner autopykota dumpykota edpykota pykotme repykota warnpykota pkprinters pykosd ; do 22 22 echo "$prog" ; 23 23 help2man --no-info \ … … 26 26 --source="C@LL - Conseil Internet & Logiciels Libres" \ 27 27 --output="temp$prog.1" \ 28 "$prog" ; 28 "$prog" ; 29 29 /bin/sed -e "s/--/\\\-\\\-/g" <"temp$prog.1" >"$prog.1" ; 30 30 /bin/rm -f "temp$prog.1" 31 31 cd ../po ; 32 for dir in * ; do 32 for dir in * ; do 33 33 if [ -d $dir ] ; then 34 34 if [ -e $dir/pykota.po ] ; then … … 41 41 --source="C@LL - Conseil Internet & Logiciels Libres" \ 42 42 --output="temp$prog.1" \ 43 "$prog" ; 43 "$prog" ; 44 44 /bin/sed -e "s/--/\\\-\\\-/g" <"temp$prog.1" >"$prog.1" ; 45 45 /bin/rm -f "temp$prog.1" 46 46 cd ../../po ; 47 fi ; 48 fi ; 47 fi ; 48 fi ; 49 49 done 50 50 cd ../man ;