mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-02-14 17:49:59 +00:00
6 lines
109 B
Bash
Executable File
6 lines
109 B
Bash
Executable File
#!/bin/sh
|
|
while true; do
|
|
find . |
|
|
entr -d . sh -c "DEBUG=1 ./markmaker.py < kube.yml > workshop.md"
|
|
done
|