摘要:
MySQL #用户管理及授权 CREATE USER luke@localhost IDENTIFIED BY 'linuxprobe'; grant all on *.* to luke@localhost; grant select,update,delete,insert on mysql.u 阅读全文
摘要:
vim 99.sh #/bin/bash##99乘法表 #!/bin/bashfor j in {1..9}dofor i in `seq $j`doecho -e -n "${i}x${j}=$[ $i * $j ]\t"doneechodone 脚本执行效果 [root@localhost sh 阅读全文