brew install php70
git clone -b NON_BLOCKING_IO_php7 https://github.com/websupport-sk/pecl-memcache.git
cd pecl-memcache
phpize
./configure
make && make install
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
my $num_args = $#ARGV + 1; | |
if ($num_args != 1) { | |
print "\nUsage: perl progress.pl class\n"; | |
exit; |
echo -n "Domain Name: " | |
read dmn | |
echo -n "Mysql Root Password: " | |
read -s mrp | |
echo -n "Database Name: " | |
read dbn | |
echo -n "Database User: " | |
read dbu | |
echo -n "Database Password: " | |
read -s dbp |