Ajout d'une page de manuel UNIX (en anglais et en francais)

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@384 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
xavierqet
2008-08-20 21:25:53 +00:00
parent 9f8c1b03e8
commit 1cd7590651
5 changed files with 156 additions and 15 deletions

10
man/uncompress_man_pages.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
# Uncompresses every man page
APP=qelectrotech.1
MAN_DIR=$(dirname $0)/files
find ${MAN_DIR} -type f -name "${APP}.gz" -exec gzip -d {} \;
# correct files permissions
find ${MAN_DIR} -type d -exec chmod a+rx {} \;
find ${MAN_DIR} -type f -name "${APP}" -exec chmod a+r {} \;