telodendria/tools/env.sh

8 lines
126 B
Bash
Raw Normal View History

2022-07-30 13:37:08 +00:00
#!/usr/bin/env sh
find tools/bin -type f | while IFS= read -r tool; do
chmod +x "$tool"
done
PATH="$(pwd)/tools/bin:$PATH"