The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/bin/sh

# You can call a set of scripts like so on an event

cd /etc/lsm/script.d
for script in $(ls); do
    if [ ! -x $script ]; then
        continue
    fi
    ./$script "$@"
done

#EOF