摘要:
占个坑。 今天在向本机搭建的MySQL数据库插入中文的时候报错了。 使用 show variables like 'char%'; 及 show variables like 'collation%'; 发现许多项是latin。意识到是配置文件的问题。 去找配置文件的时候,竟然没找到配置文件(记得以 阅读全文
摘要:
#!/bin/bash set -e -u show_help() { echo "This help message is useless, please read the content of /bin/pacman" exit 1 } if [ $# = 0 ]; then show_help; fi CMD="$1" shift 1 case "$C... 阅读全文