1
0
mirror of https://codeberg.org/kiss-community/kiss synced 2024-09-28 12:22:39 -06:00
kiss/contrib/kiss-hooks
2021-07-14 18:58:44 +03:00

8 lines
130 B
Bash
Executable File

#!/bin/sh -e
# List all system-wide hooks
for hook in "$KISS_ROOT/var/db/kiss/hooks/"*; do
printf '%s\n' "${hook##*/}"
done