คำแนะนำเกี่ยวกับการตั้งค่าพรอมต์ mysql ที่มีสี
ขั้นตอนที่ 1 เข้าใจวิธีการเข้าสู่ระบบตามปกติด้วยการแจ้งเตือนชุด:
eric@dev ~ $ mysql --host=yourhost.com -u username --prompt="foobar> " -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 711
Server version: 5.6.19 MySQL Community Server (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
foobar>
ขั้นตอนที่ 2 เข้าใจวิธีที่คุณสามารถไพพ์นิพจน์ที่ตีความผ่าน echo ไปยัง 'alias':
ซึ่งทำเช่นเดียวกับขั้นตอนที่ 1 ด้านบน:
eric@dev ~ $ alias penguins=$(echo -e 'mysql --host=yourhost.com -u dev --prompt="foobar> " -p')
eric@dev ~ $ penguins
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 713
Server version: 5.6.19 MySQL Community Server (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
foobar> exit
Bye
eric@dev ~ $
ขั้นตอนที่ 3. เข้าใจว่า echo -e ประเมินนิพจน์ colorized อย่างไร:
สีนี้จะแสดงพร้อมท์ "foobar>" สีแดง:
alias penguins=$(echo -e 'mysql --host=yourhost.com -u dev --prompt="\x1B[31mfoobar>\x1B[0m " -p')
penguins
อย่างนี้:
ขั้นตอนที่ 4 หากคุณสับสนว่าเกิดอะไรขึ้นที่นี่:
ดูการแสดงออก: \x1B[31mfoobar>\x1B[0m
มันมีสามส่วน:
code what it means:
\x1B[31m Start colorizing, 31m is red.
foobar> prompt text
\x1B[0m Stop colorizing.
ขั้นตอน 4. ขั้นสูงช่วยทำให้พร้อมท์ที่ดีจริง:
eric@dev ~ $ alias penguins=$(echo -e 'mysql --host=yourhost.com -u dev --prompt="\x1B[31m\\u\x1B[34m@\x1B[32m\\v\x1B[0m:\x1B[36m\\d>\x1B[0m " -p')
eric@dev ~ $ penguins
หากคุณสับสนว่าโค้ดขนาดใหญ่นี้ทำอะไร:
\x1B[31m\\u\x1B[34m@\x1B[32m\\v\x1B[0m:\x1B[36m\\d>\x1B[0m
คำอธิบาย:
Code Note
\x1B[31m Start colorizing red
\\u escape the backslash for passage through echo, and print username
\x1B[34m Start colorizing dark blue
@ literal at sign
\x1B[32m Start colorizing green
\\v escape the backslash for passage through echo, print server version
\x1B[0m Stop colorizing
: literal colon
\x1B[36m Start colorizing cyan
\\d> Backslash for passage through echo, print default db and >
\x1B[0m Stop colorizing.
ดังนั้นว้าว รหัสมาก