8 lines
149 B
Bash
Executable File
8 lines
149 B
Bash
Executable File
#!/bin/bash
|
|
if ! which entr > /dev/null; then
|
|
echo "entr is not installed, aborting..."
|
|
exit 1
|
|
fi
|
|
|
|
find . -name "*.py" | entr -r ./server.py
|