mirror of
https://github.com/imjasonh/shipwright-cosign-example
synced 2026-07-08 00:45:24 +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
|