This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cstdio> | |
#define BUFFER_SIZE 1024 | |
int main() { | |
FILE* file = stdin; | |
char buffer[BUFFER_SIZE]; | |
long long bytes_read = 0; | |
while (bytes_read = fread(buffer, 1, BUFFER_SIZE, file)) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Ignore everything except plugins... # | |
** | |
!wp-content/ | |
wp-content/** | |
!wp-content/themes/ | |
wp-content/themes/** | |
!wp-content/plugins/ | |
!wp-content/plugins/** | |
!wp-content/mu-plugins/ | |
!wp-content/mu-plugins/** |