Files
mastering-unix-ss/chapter6/function_pre_event
Fabio Scotto di Santolo 4cc88d2f6e initial commit
2020-07-28 19:28:25 +02:00

11 lines
313 B
Plaintext
Executable File

pre_event ()
{
# Add anything that you want to execute in this function. You can
# hardcode the tasks in this function or create an external shell
# script and execute the external function here.
: # No-Op: The colon (:) is a No-Op character. It does nothing and
# always produces a 0, zero, return code.
}