grep -v '#' apache.conf |sed /^$/d
или так
grep -E -v '#|^$' apache2.conf
или так
egrep -v '#|^$' apache2.conf
grep -v '#' apache.conf |sed /^$/d
или так
grep -E -v '#|^$' apache2.conf
или так
egrep -v '#|^$' apache2.conf
Чтоб не забылось и это сюда!
sudo /etc/init.d/mysql stop
sudo mysqld_safe —skip-grant-tables —user=root
Жмем Ctrl+Z
mysql -u root
В консоли:
UPDATE mysql.user SET Password=PASSWORD(‘newpassword’) WHERE User=’root’;
exit;
Из фона mysqld_safe:
fg 1
Ctrl+C.
Запускаем MySQL:
sudo /etc/init.d/mysql start