Linux Ask!

Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.

Linux Ask!

Sep 232010
 

Open UTF8 file with Vim

Answer:

If you opened an UTF-8 file, you need to let vim know by using the command below, after entering the command mode by pressing Esc + :

: set encoding=utf8

Sep 212010
 

Clear screen in MySQL client

Answer:

To clear the screen of MySQL client, like the clear command in Linux, use the following tricks:

mysql> pager clear;
PAGER set to 'clear'

mysql> select 1; -- Magic Happened here!
mysql> nopager;
PAGER set to stdout

mysql>