Skip to content

Latest commit

 

History

History
37 lines (30 loc) · 767 Bytes

README.md

File metadata and controls

37 lines (30 loc) · 767 Bytes

My console commands

install for linux

  1. Clone to folder
git clone https://github.com/ast21/console-php.git && cd console
  1. Install packages
composer install
  1. Move to executable folder
sudo ln -s $PWD/console.php /usr/local/bin/con
  1. Get command list
con list

Other instructions

Install mysqldump

# go to https://dev.mysql.com/downloads/repo/apt/
# find the link for the latest deb package (use that in the following steps)
# on your server:
wget -c https://dev.mysql.com/get/mysql-apt-config_0.8.16-1_all.deb
sudo dpkg -i mysql-apt-config*
sudo apt-get update
sudo apt-get install mysql-client
mysqldump --version # (should say Ver 8.x.x)