1
0
Fork 0
mirror of https://github.com/imjasonh/kontain.me synced 2026-07-16 12:21:53 +00:00
kontain.me/test.sh

9 lines
140 B
Bash
Raw Normal View History

2019-05-10 10:38:41 -04:00
#!/bin/bash
set -euxo pipefail
2021-09-22 11:57:48 -04:00
find cmd -name 'test.sh' -print0 |
2021-09-22 11:51:43 -04:00
while IFS= read -r -d '' line; do
bash -c "$line"
done