mirror of
https://github.com/imjasonh/shipwright-cosign-example
synced 2026-07-15 04:35:35 +00:00
7 lines
73 B
Bash
7 lines
73 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
while true; do
|
||
|
|
echo the time is now $(date)
|
||
|
|
sleep 10
|
||
|
|
done
|