]> git.pld-linux.org Git - projects/distfiles.git/blob - chmodd.sh
Fix email headers formatting
[projects/distfiles.git] / chmodd.sh
1 #!/bin/bash
2
3 dir=/var/lib/dropin/dropin
4
5 inotifywait -m -q "$dir" --format '%f' -e create |
6 while read file
7 do
8         chmod g+r "$dir/$file"
9 done
10
This page took 0.08333 seconds and 3 git commands to generate.