mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2026-01-08 14:49:58 +01:00
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:
10
man/uncompress_man_pages.sh
Executable file
10
man/uncompress_man_pages.sh
Executable 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 {} \;
|
||||
Reference in New Issue
Block a user