$ awk -F: '{print $35, $37}' 1percent | awk '{a+=$2};END{print a/NR}'
4852.23
awk -F: '{print $35, $37}' 1percent | awk '{p+=$1*$2;a+=$2}; END {print p/a}'
| After the First failure (below), I run `make` again and get | |
| ``` | |
| make | |
| make build/make/Makefile | |
| make[1]: Entering directory `/home/walkingrandomly/github/sagemath/sage-7.5.1' | |
| make[1]: `build/make/Makefile' is up to date. | |
| make[1]: Leaving directory `/home/walkingrandomly/github/sagemath/sage-7.5.1' | |
| build/bin/sage-logger \ | |
| "cd build/make && ./install 'all'" logs/install.log |
| execve("/usr/bin/make", ["make"], [/* 17 vars */]) = 0 | |
| brk(NULL) = 0xa2e000 | |
| access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) | |
| mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fdfbd430000 | |
| access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) | |
| open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3 | |
| fstat(3, {st_mode=S_IFREG|0644, st_size=23785, ...}) = 0 | |
| mmap(NULL, 23785, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fdfbd437000 | |
| close(3) = 0 | |
| access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |