摘要:
1.grep grep (global search regular expression(RE) and print out the line,全面搜索正则表达式并把行打印出来)是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行打印出来。用于过滤/搜索的特定字符。可使用正则表达式能 阅读全文
摘要:
一.用户管理 1.查询用户 use mysql; select * from user; 2.创建用户 create user 'zzz'@'%' identified by '123456'; create user 'zzz'@'localhost' identified by '123456' 阅读全文