mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 09:04:59 +00:00
4 lines
257 B
Bash
Executable file
4 lines
257 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cd "$SERENITY_ROOT" || exit 1
|
|
find . -name '*.ipc' -or -name '*.cpp' -or -name '*.c' -or -name '*.h' -or -name '*.S' -or -name '*.css' | grep -Fv Patches/ | grep -Fv Root/ | grep -Fv Ports/ | grep -Fv Toolchain/ | grep -Fv Base/ > serenity.files
|