mirror of
https://github.com/fccview/cronmaster.git
synced 2026-01-02 10:58:55 -05:00
16 lines
550 B
Bash
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 |