You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash |
|
physicalCpuCount=$([[ $(uname) = 'Darwin' ]] && |
|
sysctl -n hw.physicalcpu_max || |
|
lscpu -p | egrep -v '^#' | sort -u -t, -k 2,4 | wc -l) |
|
make -j$physicalCpuCount && ./netrunner http://motherfuckingwebsite.com/ -log debug
|
|
|