Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#include <stdio.h>
#include <string.h>
int main ( ) {
char buff[BUFSIZ];
int sum = 0;
while ( fgets ( buff, BUFSIZ, stdin ) ) {
int thissize;
if ( sscanf( buff, "%*s%*s%*s%*s%d", &thissize ) == 1 ) {
sum += thissize;
}
}
printf("%d\n", sum );
return 0;
}
$ ls -l | awk '{ sum += $5 }
END { print sum }'
9415487