mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 00:10:59 +00:00
81dea0164c
http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg156659.html git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32740 a592a061-630c-0410-9148-cb99ea01b6c8
8 lines
284 B
Bash
Executable File
8 lines
284 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# This command makes all files in "$ROOT_OUTDIR" writable by keytest.
|
|
#
|
|
# This command is useful if you run keytest under a seperate user "keytest" of group "keytest"
|
|
. ./shared_variables.sh
|
|
find $ROOT_OUTDIR | while read f ; do chmod g+rw $f ; chgrp keytest $f ;done
|