Files
cronmaster/snippets/example-user-snippet.sh
2025-08-18 13:15:13 +01:00

16 lines
550 B
Bash

# @id: example-user-snippet
# @title: Example User Snippet
# @description: This is an example of how users can create their own snippets
# @category: User Snippets
# @tags: example,user,custom,demo
# This is an example user-created snippet
# Users can add their own .sh files to the ./snippets directory
# and they will automatically be recognized by the system
echo "Hello from user snippet!"
echo "Current time: $(date)"
echo "Working directory: $(pwd)"
# Add your custom logic here
# This could be any bash script you want to use as a template