mirror of
https://github.com/MichaelCade/90DaysOfDevOps.git
synced 2025-07-09 23:42:22 +07:00
7 lines
121 B
Bash
7 lines
121 B
Bash
![]() |
#!/bin/sh
|
||
|
while true
|
||
|
do
|
||
|
echo "Writing log to a file"
|
||
|
echo '{"app":"file-myapp"}' >> /app/example-log.log
|
||
|
sleep 5
|
||
|
done
|