]>
Commit | Line | Data |
---|---|---|
265e19b2 JF |
1 | #include <sys/types.h> |
2 | #include <unistd.h> | |
3 | ||
4 | #include <stdlib.h> | |
5 | ||
6 | int main(int argc, char *argv[]) { | |
7 | setuid(0); | |
8 | setgid(0); | |
9 | ||
88885af5 | 10 | system("/usr/bin/find -P /Library/Themes/ -name '*.png' -not -xtype l -print0 | /usr/bin/xargs -0 pincrush -i"); |
265e19b2 JF |
11 | |
12 | return 0; | |
13 | } |