5 lines
275 B
Bash
5 lines
275 B
Bash
#!/bin/bash
|
|
grep -r "webui" /home/fabian/sd-restapi/src/ --include="*.cpp" --include="*.h" 2>/dev/null | grep -iE "dir|path|register|WEBUI" | head -30
|
|
echo "---"
|
|
grep -r "SDCPP_WEBUI" /home/fabian/sd-restapi/CMakeLists.txt /home/fabian/sd-restapi/src/ 2>/dev/null | head -10
|