]> git.lyx.org Git - lyx.git/blob - development/keystest/add_write_perms.sh
Safe line break to increase precision of error reporting in Listings caption
[lyx.git] / development / keystest / add_write_perms.sh
1 #!/bin/bash
2 #
3 # This command makes all files in "$ROOT_OUTDIR" writable by keytest.
4 #
5 # This command is useful if you run keytest under a seperate user "keytest" of group "keytest" 
6 . ./shared_variables.sh
7 find  $ROOT_OUTDIR | while read f ; do chmod g+rw $f ; chgrp keytest $f ;done