mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 06:12:34 +00:00
20 lines
337 B
YAML
20 lines
337 B
YAML
matches:
|
|
# Print the current date
|
|
- trigger: ":date"
|
|
replace: "{{mydate}}"
|
|
vars:
|
|
- name: mydate
|
|
type: date
|
|
params:
|
|
format: "%m/%d/%Y"
|
|
|
|
# Iso-seconds
|
|
- trigger: ":isosec"
|
|
replace: "{{output}}"
|
|
vars:
|
|
- name: output
|
|
type: shell
|
|
params:
|
|
cmd: "isosec"
|
|
|