1
0
Fork 0
mirror of https://github.com/imjasonh/kontain.me synced 2026-07-08 09:04:54 +00:00
kontain.me/test.sh
Jason Hall a85b9722b0 -name
2021-09-22 11:57:48 -04:00

8 lines
140 B
Bash
Executable file

#!/bin/bash
set -euxo pipefail
find cmd -name 'test.sh' -print0 |
while IFS= read -r -d '' line; do
bash -c "$line"
done