I am using the mysql CLI, but the result is always displayed on my terminal screen. is there any way to tell mysql the size of my terminal screen?
I could not find the team resize, but stty cols 150worked for me. You will need to run this command in a bash terminal before entering the mysql command line client.
resize
stty cols 150
MySQL does not seem to have parameters for the terminal line. If you use the system using ksh or bash, try the following before starting the mysql command shell:
eval `resize`
[ , ] $COLUMNS $LINES , xterm , .
Source: https://habr.com/ru/post/1719675/More articles:Ignore "The" and "A" when sorting a list in C # - sorting"System.IO.FileNotFoundException: Failed to load file or assembly" when the assembly really exists - vb.netDownload jQuery via Google API in Rails using HAML? - jqueryJOGL double buffering - javaQuerying tables listed in DBA_Tables - oracleHow to determine if the delete key is pressed in ActionScript 3? - eventsenumerations and common methods in java - javaHow to use CRTP in java? - javaBritish national mesh Shapefile - convert to WGS84 Lat / Lon - mappingEvents in the dependency injection system go in which direction? - oopAll Articles