摘要:
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 閱讀全文