mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
4 lines
196 B
Bash
Executable file
4 lines
196 B
Bash
Executable file
#!/bin/bash
|
|
|
|
cd $SERENITY_ROOT
|
|
find . -name '*.ipc' -or -name '*.cpp' -or -name '*.h' -or -name '*.S' | grep -Fv Patches/ | grep -Fv Root/ | grep -Fv Ports/ | grep -Fv Toolchain/ > serenity.files
|